Refresh

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?
 
J

Jeanette Cunningham

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top