History |
MsgBox (BASIC command)
Purpose
Displays a modal message box.
Because this is a modal message box, processing for this application is suspended until the user responds by clicking a button in the message box. At that time, processing continues with the line following the MsgBox command.
Use the MsgBox Response function to tell the application which button the user clicked.
Syntax
MsgBox ("MsgBoxString" [, MsgBoxButtons] [, "MsgBoxTitle"])
Example
MsgBox ("Would you like to save changes?", FCYesNoCancel, "Save")
| |||||||||||||||||||||||