Displays a message box with an input field
ret = MsgBoxGetInput (MessageString)
ret | String, output |
The string that is entered into the dialog box by the user. | |
MessageString | String, input |
The string that is displayed as the message in the dialog box. |
This is a PASSPORT function.
Sub
ZMain()
strName=MsgBoxGetInput("Please enter your first name:")
MsgBox "Hello, "&strName
End Sub