Save Record Question

  • Thread starter Thread starter Dave Elliott
  • Start date Start date
D

Dave Elliott

I have a pop-up form named frmJobDescription that opens from my main form
named TimeCards
I need the main form to auto save after this pop-up form closes.
How can I do this?
Thanks,
 
In the Close event procedure of the popup form, set the Dirty property of
the other form to no:

Forms!frmJobDescription.Dirty = False
 
Back
Top