What are the two methods for creating an embedded macro?

What will be an ideal response?


Use a wizard, such as the Command Button Wizard, and let access create the macro for you, or you can add a macro to an existing control manually by clicking the ellipsis (...) in the event box of the control or object you are manipulating.

Computer Science & Information Technology

You might also like to view...

One limitation of pipes is that they support communication only between processes that share a ________.

a) region of virtual memory b) file descriptor c) parent d) pipe buffer

Computer Science & Information Technology

int foo(int n)               //Line 1{                            //Line 2  if (n == 0)                //Line 3     return 0;               //Line 4  else                       //Line 5     return n + foo(n - 1);  //Line 6}                            //Line 7 Consider the accompanying definition of a recursive function. Which of the statements represent the general case?

A. Statements in Lines 1-6 B. Statements in Lines 3 and 4 C. Statements in Lines 4, 5, and 6 D. Statements in Lines 5 and 6

Computer Science & Information Technology

Although Roberta had signed a form preventing her doctor from sharing her personal medical records with the company she worked for, she later discovered that the doctor's office had, in fact, shared her data with her health insurance provider and her employer, which caused her to be terminated.? Because the doctor's practice violated its own privacy policy, she was able to file a lawsuit under the ________.

A. ?Health Insurance Portability and Accountability Act B. ?Health and Medical Records Privacy Act C. ?Gramm-Leach-Bliley Act D. none of these answers

Computer Science & Information Technology

With the sliding window protocol, a station that had a maximum window size of 7 could transmit only ____ data packets at one time before it had to stop and wait for an acknowledgment.?

A. ?5 B. ?6 C. ?7 D. ?8

Computer Science & Information Technology