Visual Basic Flashcards
You can open the IDE for editing the program by double-clicking on the _______ file
sln
To save your project to another dirve such as a USB drive, you need to save:
the entire project file
Visual Basic.NET 2013 is part of _________________
Visual Studio 2013
IDE is the acronym for:
Interactive Development Environment
To start debugging your program press the ____ key
F5
The _____________ is the area that lists the files that make up the project
Solution Explorer
Which is not a part of the Visual Basic IDE?
Toolkit
In the property pane, the elipsis ( three dots ), indicates that the property has an associated _____________ to indicate parameters for that control.
dialog box
The __________ is where the form is designed.
Design Area
As you move a control on the form, ______ appear to show you how the moving control lines up with other controls on the form.
snap lines
All _____ have properties
objects
________ are used to describe an objects color, size, location, name, etc.
properties
Controls are objects that are placed on the form and are taken from the
toolbox
A control’s ______ describe the control.
properties
A control’s ______ describe the control.
properties
To move a control you must first give it
focus
To hid a control from the form viewer, set the __________ property to false.
visible
The statement ___________ is used to close a form.
Me.Close()
The ___________ control, holds an image and displays it on the form.
PictureBox
The _________ is usually a letter pressed with the Alt key to generate a click event.
Access Key
The Forms ______________ property holds the command that will be executed when the ESC key is pressed.
Cancel Button
The Forms ___________ property holds the command that will be executed when the enter key is pressed
Accept Button
The _______________ and footer are the container for the code to be executed when an event is triggered
subroutine header
The _______ window is where you enter the statements to be executed for an event.
code