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
_________ occur from a user action or something that happens during the execution of some other code or when something happens in the system.
Events
The ___________ property for a control dictates the color of the control.
Background
The ___________ property for a control dictates the color of the control.
Background
_______ determines which part of a program can access a variable
Scope
A ________ is a category of variables that is given a value when declared and may not be changed by any code statement.
Constant
Which statement will take a value from a TextBox named txtHireDate, and store it in a variable named dteHire
dteHire = CDte(txtHireDate.Text)
The syntax to declare a variable of data type integer named intHours is:
Dim intHours as Integer
________ variables properly helps the programmer remember what data is stored in the space.
Naming
The program may create storage places of data called:
variables
Which statement puts the value 55 into the variable name intSpeed
intspeed = 55
Whcih statement takes a value from a TextBox named txtPay and stores it as a number of decimal data type in a variable declard as data type decimal, named decPay
decPay = Cdec(txtPay.Text)
A ______ helps the compiler reserve the correct number of memory locations to store the data
data type
Which variable name is not correct.
intPay Rate
Which variable name is not correct.
intPay Rate
_______________ operators are a coding shortcut that may be used when a value is calculated using a value in a variable, with the result stored in that variable
Assignment
The label control displays the contents of its ___ property on the form
text
An ______ data type, by definition does not allow fractional data
Integer
The _____ property of the Button control allows the program to disable the button and enable it from within the code
enable
The _________ control displays the contents of its text property on the Windows Form
Label
The code takes the data from the _____ property of the TextBox control
text