A(n) ________ is an action initiated either by a user or by VBA code
Fill in the blank(s) with the appropriate word(s).
Answer: event
You might also like to view...
Which of the following statements is an example of a SELF JOIN?
A) SELECT department_id, department_name,location_id, city FROM departments NATURAL JOIN locations; B) SELECT e.employee_id, e.last_name, e.department_id, d.department_id, d.location_id FROM employees e JOIN departments d ON (e.department_id = d.department_id); C) SELECT e.employee_id, e.last_name, e.department_id, d.department_id, d.location_id FROM employees e JOIN departments d ON (e.department_id = d.department_id) AND e.manager_id = 149 ; D) SELECT worker.last_name emp, manager.last_name mgr FROM employees worker JOIN employees manager ON (worker.manager_id = manager.employee_id);
Match the following desired actions with the method used to accomplish those actions:
I. Add several pictures to each record II. Add the capability to jump out to a website easily III. Add capability of managing attachments on a form IV. Be able to manipulate a table's data in Excel V. Be able to view a report the same on any computer A. Attachment data type B. Attachment control C. Export to XPS D. Export to Excel E. Hyperlink data type