Refresh

  • Thread starter Thread starter JennKriv
  • Start date Start date
J

JennKriv

I have a command button on my "PO" form that opens a projects form. I want my
PO form to be automatically updated when the projects form i closed so that I
don't have to close then re-open the form. The info that I want refreshed is
in the detail subform. And the refresh wizard button does not work quite
right. What coding would be needed and where?
 
JennKriv,
try saving the PO form before opening the projects form.
Code the click event of the button that opens the project form something
like this

If Me.Dirty = True Then
Me.Dirty = False
End If
DoCmd.OpenForm "NameOfProjectForm"


Jeanette Cunningham -- Melbourne Victoria Australia
 
Back
Top