Requery a form

  • Thread starter Thread starter Antonio
  • Start date Start date
A

Antonio

I have two forms (frmEmployee and frmInstructions) and I
would like to insert DoCmd.Requery "" into the "On Close"
event of the frmInstructions and in one of the forms and
have it requery frmEmployee when the user clicks the
close button on the upper left hand corner of the window.
Is this possible? Can you specify another form vice a
control on the current form in the DoCmnd code?
Tia
 
Try

Forms!frmEmployee.Requery

In the Close or Unload Event Procedure of the Form frmInstruction.
 
Back
Top