CH 1 Concepts
You can remove the Minimize, Maximize, and Close buttons from a form's title bar by setting the form's ___________ property to False. A) ControlBox B) ControlButton C) TitleBar D) TitleBarElements
A) ControlBox
You can use the _________ instruction to terminate a running application. A) Me.Close() B) Me.Done() C) Me.Finish() D) Me.Stop()
A) Me.Close()
The names of solution files in Visual Basic 2010 end with ___________ . A) .prg B) .sln C) .src D) .vb
B) .sln
The _________ property controls the text displayed in a form's title bar. A) Caption B) Text C) Title D) TitleBar
B) Text
Which of the following is FALSE? A) When you add a timer control to a form, the control appears in the component tray. B) The user can see a timer control during run time. C) You stop a timer by setting its Enabled property to False. D) The number entered in a timer's Interval property represents the number of milliseconds for each interval.
B) The user can see a timer control during run time.
If a timer is running, the code in its ___________ event procedure is processed each time an interval has elapsed. A) Interval B) Tick C) Timed D) Timer
B) Tick
When a form has been modified since the last time it was saved, what appears on its tab in the designer window? A) an ampersand (&) B) an asterisk (*) C) a percent sign (%) D) a plus sign (+)
B) an asterisk (*)
The purpose of the __________ control is to display text that the user is not allowed to edit while the application is running. A) Button B) DisplayBox C) Label D) PictureBox
C) Label
To disable the Minimize button on a form's title bar, set the form's _________ property to False. A) ButtonMinimize B) Minimize C) MinimizeBox D) MinimizeButton
C) MinimizeBox
You give an object a more meaningful name by setting the object's _________ property. A) Application B) Caption C) Name D) Text
C) Name
You use the _________ window to set the characteristics that control an object's appearance and behavior. A) Characteristics B) Object C) Properties D) Toolbox
C) Properties
The ____________ window lists the projects and files included in a solution. A) Object B) Project C) Properties D) Solution Explorer
D) Solution Explorer
The __________ property determines the initial position of a form when the application is started. A) InitialLocation B) Location C) StartLocation D) StartPosition
D) StartPosition
The text displayed on a button's face is stored in the button's ______________ property. A) Caption B) Label C) Name D) Text
D) Text
The Format menu contains options that allow you to ____________. A) align two or more controls B) center one or more controls horizontally on the form C) make two or more controls the same size D) all of the above
D) all of the above
Which of the following statements is true? A) You can auto-hide a window by clicking the Auto Hide (vertical pushpin) button on its title bar. B) An auto-hidden window appears as a tab on the edge of the IDE. C) You temporarily display an auto-hidden window by placing your mouse pointer on its tab. D) all of the above
D) all of the above