Set the ____ property to No to prevent users from using the Tab key to navigate to a control.
A. Tab Stop
B. On Tab
C. Tab Index
D. Text Align
Answer: A
You might also like to view...
At normal reading distance, a resolution of about _____ dpi appears solid to the human eye.
A. 900 B. 1,200 C. 600 D. 2,400
Point mode allows you to ____, as shown in the accompanying figure.
A. select cells for use in a formula using the keyboard B. select a function from the Sum button list C. select cells for use in a formula using the mouse D. edit cell contents directly in the cell
An experimental multicasting backbone, called ____, supports multicasting over the Internet.
A. CBone B. MCastBone C. Internet2 D. MBone
What heap operation does the following function implement?bool heapOperation (HEAP* heap, void* dataPtr){ if (heap->size == 0) { heap->size = 1; heap->last = 0; heap->heapAry[heap->last] = dataPtr; return true; } if (heap->last == heap->maxSize - 1) return false; ++(heap->last); ++(heap->size); heap->heapAry[heap->last] = dataPtr; _reheapUp (heap, heap->last); return true;}
A. create heap B. insert heap C. reheap up D. reheap down