| A | B |
| Visual Studio | integrated development environment (IDE) software used for programming. |
| Visual Basic | programming language used in this course |
| Solution Explorer | Visual Studio Window that displays a list of the projects in the solution and the items contained in the project. |
| Designer Window | contains form to be designed. |
| Editor Window | White window that contains your program code. |
| Toolbox | contains the controls for designing a form. |
| Button | form control clicked by user to perform an action or group of actions. |
| TextBox | form control used to gather input from a user or to display text back to the user. |
| Label | form control used to display information to the user either to identify another object |
| ListBox | form control used to display a list of items for a user to select; multiple items can be selected. |
| ComboBox | form control in the form of a drop down men that allows a user to type in an entry or select an option. |
| CheckBox | form control that is allows users to provide multiple inputs to answer a question. |
| RadioButton | form control that allows user to make only one choice from the options in the group. |
| PictureBox | form control that is used to display a picture or image to the user. |