The ________ event occurs when a report is open and its record(s) is/are displayed

A) On Dirty B) On Load C) On Open D) On Activate


B

Computer Science & Information Technology

You might also like to view...

In a linked list implementation using a reference first to point to the first node of the list, a method isEmpty() can test to see if the list is empty by executing the statement(s)

A) return null; B) first = null; return first; C) if (isEmpty()) return true; else return false; D) return first == null;

Computer Science & Information Technology

List and explain the four interviewing techniques mentioned in the text for learning about users and their jobs. Explain the advantages and disadvantages of each.

What will be an ideal response?

Computer Science & Information Technology

Discuss how the Validation Rule field property helps to control data entry and why that is important.

What will be an ideal response?

Computer Science & Information Technology

Which of the following statements about pretest loops is true?

A. In each iteration, the loop control expression is tested first. B. If the loop control expression is false, the loop terminates. C. Pretest loops do not require initialization. D. In C, the loop control expression is a part of the loop statement itself. E. Pretest loops do not require an action.

Computer Science & Information Technology