| A | B |
| For Next Loop | used when the programmer knows precisely how many times the loop instructions are to be processed |
| Change event | occurs when the contents of the text box are changed |
| lblgrade.caption="" | erases the contents of lblgrade |
| alignment property | can be changed to eithe left, centered, or right |
| MsgBox | displays one of Visual Basic's predefined dialog boxes |
| MsgBox prompt | the message you want displayed in the dialog box |
| MsgBox title | a string expression, typicallly the application's name, displayed in the title bar of the dialog box |
| default button | in a dialog box is typically the button that represents the user's most likely action, as long as that action is not destructive |
| buttons argument | has a constant and a numeric value associated with it |
| Unload event | used to specify other instructions that should be processed when the form is unloaded |
| Cancel As Integer | found between the parentheses of an Unload event procedure heading |
| number 0 | in an application, if found in the within the Cancel argument of an Unload event, will automatically end the application |
| Unload statement | can be used in an Exit button's Click event procedure to exit the application |