What happens if you are in the last cell of a table and press Tab?
A) A new row is created
B) Nothing--you will remain in the cell
C) You return to the first cell in the first row
D) A new column is created, and the insertion point moves to the new column
A
You might also like to view...
Answer the following statements true (T) or false (F)
1. F5 is the keyboard shortcut used to activate the Properties window. 2. Once a control is placed on a form, you can rename it by editing the Name property in the Properties window. 3. The Description pane, located below the Properties windows, shows a brief explanation of the highlighted property. 4. The ForeColor property of a text box changes the color of the form containing the text box. 5. Shortcut keys like F5 (Run), allow you to perform certain tasks without the use of the mouse.
What is wrong with the following GetName procedure?
``` Sub GetName(ByVal strName As String) strName = InputBox(“Enter your Name:”) End Sub ``` a. The procedure is missing a Return statement. b. GetName is a reserved word and cannot be used as a name of a procedure. c. strName will be modified, but all changes will be lost when the procedure ends. d. The syntax for the call to InputBox is incorrect.