| A | B |
| ^ | Arithmetic operator for Exponentiation |
| * | Arithmetic operator for Multiplication |
| / | Arithmetic operator for Division |
| + | Arithmetic operator for Addition |
| - | Arithmetic operator for Subtraction |
| ( ) | Used to change operator precedence in expressions |
| ' | Precedes a comment |
| " | Used to enclose text in an assignment statement |
| = | Used in an assignment statement to give object properties new values |
| ALIGNMENT | Object property used to change the alignment of text in a label's caption. |
| BOLD | Font sub-property that can be assigned either True or False. |
| CAPTION | Object property used to change the text displayed in a title bar, button, or label. |
| CODE COMMAND | Displays the form module for a form. Found in the view menu. |
| COMMAND BUTTON CONTROL | Used to create a command button object. Found in the tool box. |
| END COMMAND | Stops current application. Found in the run menu. The end button on the tool bar can be used instead of a command. |
| END SUB | Required to end the Sub statement. |
| EXIT COMMAND | Closes Visual Basic IDE. Found in the file menu. |
| FONT | Object property used to display a dialog box for changing the font, font style, and size of an objects caption. |
| IMAGE CONTROL | Used to create an image object. Found in the tool box. |
| ITALIC | Font sub-property that can be assigned either True or False. |
| LABEL CONTROL | Used to create a label object. Found in the tool box. |
| MAKE COMMAND | Creates an executable file. Found in the file menu. |
| ME | Used in place of form name. |
| NAME | Object property used to identify the object. |
| NEW PROJECT COMMAND | Creates a new project. Found in the file menu. |
| OPEN PROJECT COMMAND | Opens an existing project. Found in the file menu. The open project button on the tool bar can be used instead of the command. |
| PICTURE | Object property that can be used to select a graphic. |
| PRINT COMMAND | Prints the interface and program code of the application. Found in the File menu. |
| PRIVATE | Indicates the procedure cannnot be accessed outside of the form module. |
| REMOVE PROJECT COMMAND | Removes the current project from the IDE. Found in the File menu. |
| SAVE PROJECT COMMAND | Saves the current project. Found in the File menu. The Save Project Button on the tool bar can be used instead of the command. |
| SIZE | Font sub-property that can be assigned a numeric value from 0 to 2048. |
| START COMMAND | Runs the current application. Found in the Run menu. The Start button on the tool bar can be used insread of the command. |
| STRETCH | Object property that controls the appearance of an resized image in its container, that can be assigned True or False. |
| SUB | Declares a procedure. |
| UNLOAD | Statement used to terminate a program. |
| VIEW CODE BUTTON | Clicked to view the form module. Found in the Project Explorer window. |
| VIEW OBJECT BUTTON | Clicked to view the form. Found in the Project Explorer window. |
| VISIBLE | Object property that contols whether the object can be seen or not, that can be assigned True or False. |