back to Command Reference
[Undocumented]
Purpose
Restricts input to a maximum number of characters. No question mark is
displayed as a prompt.
INPUT@n; variable
Example
INPUT@3; age
INPUT@10; A$
Parameters
- n: Maximum number of characters allowed for input (1 to 250).
- variable: Numeric or string variable to receive the input.
Explanation
- Functions like INPUT, but limits the number of characters the
user can type to a maximum of
n characters.
- Unlike the standard
INPUT statement, no question mark ? prompt is
displayed.
- The maximum value of
n is 250 characters.
- This command is useful for creating formatted input screens where input
fields have a fixed maximum width.
See