Input()
Prompt the user with a question.
Syntax
Input(<cQuestion>)
Arguments
<cQuestion> --> is the question as a character string.
Description
Displays a dialog box that prompts the user to respond to a Yes/No question. The response from the user can be determined by calling the AnswerYes() function.
Example
Input('Do you wish to continue?')
If AnswerYes()
Echo('Yes!')
Else
Echo('No!')
Endif
____________________________
Related Topics: