• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/33

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

33 Cards in this Set

  • Front
  • Back
^
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 a numeric expression.
'
Precedes a comment.
"
Used to enclose text in an assignment statement.
Button control
Used to add a Button control class object to a form. Properties include Name and Text. Events include Click.
Close Solution command
Closes a project. Found in the File menu.
Delete command
Deletes a menu item. Found in the menu displayed by right-clicking the menu item in the Form Design window.
End
Statement used to stop program execution.
End Sub
Statement used to end a procedure.
Exit command
Closes the Visual Basic .NET IDE. Found in the File menu.
Form class
Used to create a control class object that is an application interface. Properties include Text.
GroupBox control
Used to add a GroupBox control class object to a form for grouping a set of radio buttons. Properties include Name and Text.
Inherits
Statement used to indicate that a class contains all the attributes of another class.
Insert command
Inserts a new menu item above an existing one. Found in the menu displayed by right-clicking the existing menu item in the Form Design window.
Label control
Used to add a Label control class object to a form. Properties include Name, Text, Font, and TextAlign.
MainMenu control
Used to add an application component that contains menu items. Properties include Name.
Me
Keyword used in a statement to refer to the current Form object.
MenuItem objects
The items added to a MainMenu component. Properties include Name and Text. Events include Click.
New Project button
Clicked to create a new project. Found on the toolbar. New Project on the Start Page can be used instead.
Print command
Prints the program code of an application. Found in the File menu.
Private
Keyword used in a statement to indicate that a procedure cannot be accessed outside of the form class.
Project command
Opens an existing project. Found in the Open submenu in the File menu. Open Project on the Start Page can be used instead.
RadioButton control
Used to add a Radio Button control class object to a form. Properties include Name, Text, and Checked. Events include Click.
Save command
Saves the current project. Found in the File menu. The Save Project button on the toolbar can be used instead of the command.
Start command
Runs an application. Found in the Debug menu. The button on the toolbar can be used instead of the command.
Stop Debugging command
Stops the current application. Found in the Debug menu. The button on the toolbar can be used instead of the command.
Sub
Statement used to declare a procedure.
View Code button
Displays the Code window. Foudn in the Solution Explorer window. The Code command from the View menu can be used instead of the button.
View Designer button
Clicked to view the Design window. Found in the Solution Explorer window.