To find records in a form using a Combo box, it is necessary to change the ____ form property of the form to the table or query that is the source for all the bound controls in the Detail section.

A. Record Source
B. Default View
C. Caption
D. Modal


Answer: A

Computer Science & Information Technology

You might also like to view...

To view the Info panel, press the ____ key.

a. Page Up b. Esc c. F8 d. I

Computer Science & Information Technology

By routing the output to a __________, a permanent copy (called a hard copy) is obtained.

a. display screen b. LCD screen c. printer d. keyboard

Computer Science & Information Technology

What is the output of the following code?

``` ArrayList list = new ArrayList(); String s1 = new String("Java"); String s2 = new String("Java"); list.add(s1); list.add(s2); System.out.println((list.get(0) == list.get(1)) + " " + (list.get(0)).equals(list.get(1))); ``` a. true false b. false true c. true true d. false false

Computer Science & Information Technology

The method for adjusting the random numbers produced by a random-number generator to reside within a specified range is called ____.

A. scaling B. stubbing C. prototyping D. converting

Computer Science & Information Technology