click below
click below
Normal Size Small Size show me how
Visual Basic 2010
| Question | Answer |
|---|---|
| Displays text the user cannot change | Label |
| Allows the user to enter text | TextBox |
| Performs an action when clicked | Button |
| A round button that is selected or deselected with a mouse click | RadioButton |
| A box that is checked or unchecked with a mouse click | CheckBox |
| A window that contains these controls ComboBox, CheckBox, Raiouttons, HScrollBar, VScrollBar, Close, and ListBox | Form |
| All controls have | Properties |
| Each property has a | value |
| Control names must start with a _____________ Remaining characters may be letters, digits, or underscores | Letter and that is a rule |
| txt | For Text Boxes |
| lbl | For Labels |
| btn | For Buttons |
| Capitalize the first letter of each word | Convention |
| Words with special meaning to Visual Basic for example Private, Sub | Keywords |
| Names created by the programmer, for exmple sngGrossPay, btnClose | Programmer-defined-names |
| Special symbols to perform common operations (e.g., +, -, *, and /) | Operators |
| Comments inserted by the programmer – these are ignored when the program runs (e.g., any text preceded by a single quote) | Remarks |
| Defines the correct use of key words, operators, and programmer-defined | Syntax and names |
| A program that violates a rule of syntax will | Not run until the error is corrected |
| Provides everything needed to create, test, and debug software | An IDE or integrated development environment |