Match the following five terms to their appropriate description:

I. SendObject A. This action automates the process of opening a
II. Command Button Wizard database object and attaching it to an Outlook
III. Message Box e-mail message for delivery.
IV. Snapshot format B. A file type that captures the content of the
V. MsgBox Macros document and saves it in a non-editable format.
C. Provides a useful tool in a database as it can be
utilized to provide feedback to the user that the
macro did indeed run.
D. Displays information and feedback regarding the
execution of the macro.
E. Provides an easy way of assigning macros to
buttons in forms.


A, E, D, B, C

Computer Science & Information Technology

You might also like to view...

Create a class CartoonPanel and create a constructor that takes an array of Picture objects and displays them from left to right like a cartoon in a newspaper. You can use the scale method to scale the pictures to fit. You can create a new picture to use to display the cartoon on.

What will be an ideal response?

Computer Science & Information Technology

List five of the seven design guidelines for a Web-based fill-in form.

What will be an ideal response?

Computer Science & Information Technology

The following code uses a for loop to sum the elements of an array. Find the error(s) in the following code:

``` 1 public void sumArray() 2 { 3 int[] numbers = new int[] { 1, 2, 3, 4, 5, 6, 7, 8 }; 4 5 for ( int counter = 0; counter <= numbers.size; counter++ ) 6 { 7 int sum += numbers[ counter ]; 8 } 9 } // end method sumArray ```

Computer Science & Information Technology

The ________ is a field property of the table that can be used to limit the values that can be typed into a specific field

A) Primary Key B) Validation Rule C) Field Size D) Required

Computer Science & Information Technology