Front | Back |
Words and characters typed into a TextBox control are stored in the
|
Controls Text property
|
The standard prefix for TextBox control names is
|
Txt
|
What is used to perform string concatenations
|
& operator
|
The control that has the focus receives the users keyboard input or mouse clicks. The focus is moved by calling the
|
Focus method
|
The order in which controls receive the focus when the TAB key is pressed at runtime is called the
|
Tab order
|
When you place controls on a form, the tab order will be the same sequence in which you
|
Created the controls
|
How can you modify the tab order
|
By changing a controls TabIndex property
|
What selection mode allows you to easily view the TabIndex property values of all the controls on a form?
|
Tab order selection mode
|
If you do not want a control to receive the focus when the user presses the TAB key, set its TabStop property to
|
False
|
How do you assign an access key to a button
|
By placing an ampersand (&) in its Text property
|
The letter that immediately follows the ampersand (&) becomes the
|
Access key
|
What are forms two properties?
|
AcceptButton and CancelButton
|
What refers to the control that will receive a Click event when the user presses the ENTER key?
|
AcceptButton
|
What refers to the control that will receive a Click event when the user presses the ESC key?
|
CancelButton
|
What is the assignment operator (=) used for?
|
To store a value in a variable, just as with a control property
|