Save Record Question

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,
 
A

Allen Browne

In the Close event procedure of the popup form, set the Dirty property of
the other form to no:

Forms!frmJobDescription.Dirty = False
 
Top