Syntax
string inputnoecho( string prompt )
Description
inputnoecho prompts the user for a single line of input. The input is not displayed on the screen as it is typed.
Example
Instr = inputnoecho("Enter Selection: "); if (Instr in allowed_strs) { …. }