Applies To DoCmd object.
Description
The Requery method of the DoCmd object carries out the Requery action in Visual Basic. For more information on how the action and its argument work, see the action topic.
Syntax DoCmd.Requery [controlname] The Requery method has the following arguments.| Argument | Description | 
| controlname | A string expression that's the name of a control on the active object. | 
Remarks Use only the name of the control for the controlname argument, not the full syntax.
You can also use a variable declared as a Control data type for this argument:Dim ctlLstBox As Control
Set ctlLstBox = Forms!Form1!Field3
DoCmd.Requery ctlLstBox.NameSee Also Requery method (Control or Form object), Requery method ("DAO Language Reference").
Example The following example uses the Requery method to update the EmployeeList control:DoCmd.Requery "EmployeeList"