| A | B |
| cbo | combobox |
| chk | ckeckbox |
| lbl | label |
| cmd | command |
| txt | textbox |
| frm | form |
| opt | option |
| txtname.Text | command to clear a textbox |
| lblname.Caption | display "Hello" in a label control |
| chkAdd.Value = 0 | clear a checkbox control |
| Dim Pay As Integer | declare a variable as integer |
| Dim Group As String | declare a variable as a string |
| & | used to concatenate |
| Val(Text1.Text) * .345 | used to multiply textbox 1 |
| Val(Text2.Text) / .78902 | used to divide textbox 2 |
| Val(Text3.Text) + 34.5 | used to add textbox 3 |
| chkdue.Value = 0 | used to clear a checkbox control |
| #1 | frmSmallAbout.WindowState = 1 |
| #2 | Unload frmGoneAbout |
| #3 | frmSeeAbout.Show 1 |
| #4 | txtCursor.SetFocus |
| #5 | MsgBox "A Fatal Error Has Occurred", 48, "Important Information" |
| #6 | lblCharge.Caption = hsbRate.Value * 0.01 |