Exhibit:
You are developing a Human Resourced application. There is a query-only form that displays employee IDs, names, and department numbers. When users double-click an employee ID, another form opens displaying all the columns from the EMPLOYEES table so that users can update the records (as shown in the exhibit) You use a global variable to pass the value for Employee_Id to the update form. When users modify the name and exit the update form, how can you synchronize the data in the query-only form so that the new name is displayed?
A.
Requery the data in a When-New-Form-Instance trigger of the query-only form.
B.
Requery the data in a Pre-Form trigger of the query-only form.
C.
Requery the data in a When-Form-Navigate trigger of the query-only form.
D.
Pass the new name value in a global variable from the update form to the query-only form and assign it to the appropriate name item in a When-New-Form-Instance trigger of the query-only form.
E.
Pass the new name value in a global variable from the update form to the query-only form and assign it to the appropriate name item in a Pre-Form trigger of the query-only form.
F.
Pass the new name value in a global variable from the update form to the query-only form and assign it to the appropriate name item in a When-Form-Navigate trigger of the query-only form.