Use a menu item's __________ to assign shortcut keys to an item.
A. Edit function
B. ShortcutKeys property
C. Properties function
D. Toolbar
Answer: B
Computer Science & Information Technology
You might also like to view...
What value will be assigned to intIndex when the following statements execute?
Dim strTarget As String = "asdsakfljfdgasldfjdl" Dim intIndex as Integer = strTarget.IndexOf("GAS") a. 11 b. 12 c. 0 d. –1
Computer Science & Information Technology
What is the output of the following code (assuming it is embedded in a correct and complete program)?
```
char letter[5] = {'o', 'k', "c", "g''};
for(int i = 4; i >= 0; i-- )
cout << letter[i];
cout <
Computer Science & Information Technology