Problem Solving
Developing the App
Learning about VB
Focus on the Controls
and the Properties
100
A control’s Text property may be changed by doing what?
What is an assignment statement
100
Which property is used to change the color of text in a control?
What is ForeColor
100
A Label control’s _____ property establishes the font, style, and size of the label’s displayed text.
What is Font
100
Which of the following is not a means of opening an existing Visual Basic project?
What is Click File on the menu bar, then select New Project.
100
How do you run an application?
What is Debugging (Methods)
200
Which of the following values is not allowed for the SizeMode property of the PictureBox control?
What is ShrinkImage
200
The Visible property is Boolean. True or False
What is True
200
When set to _____, the TextAlign property causes text to appear in the bottom right area of a Label control.
What is Bottom Right
200
How do you add a control to a form?
What is Double click the desired control icon in the Toolbox window.
200
In an assignment statement, the name of the item receiving the value must be on the __________ side of the = operator.
What is left
300
You can run an application in the Visual Studio environment by pressing the F5 key. True or False
What is True
300
The _________ property determines how a Label control’s text is aligned.
What is Text Align
300
What errors are errors that are generated while an application is running is what?
What is Runtime
300
The SizeMode property of a PictureBox control is set to___ by default.
What is Normal
300
Are Runtime errors are caused by syntax errors? True or False
What is False
400
Which character is used to begin a comment?
What is the apostrophe ( ‘ )
400
Which statement about the Autosize property in a label is false?
What is "It is set to false by default"
400
When you lock the controls on a form, the user must enter a password before the application will run. True or False
What is False
400
The statement causes the form to close is what?
What is Me.Close()
400
When you __________ the controls on a form, they cannot be accidentally moved at design time.
What is lock
500
A form’s _____________ property can be used to prevent the user from resizing, minimizing, or maximizing a window, or closing the window using its Close button.
What is FormBorderStyle
500
A PictureBox control’s __________ property lists the name of the file containing the graphic image.
What is Image
500
When clicking the__ button in the Properties window causes related properties to be listed in groups is called?
What is Categorized
500
When the ______button is selected on the Solution Explorer window, it opens the Code window.
What is View Code
500
You commonly display words and sentences on a form by setting the value of a Label control’s _______________ property.
What is Text