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
 

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

Similar Threads

Access Form Refresh 1
Update combo box after new entry 4
Form with Subform not Refreshing 1
Still stuck: rerunning a query to change criteria 1
Event won't fire 2
Form Question 5
Refresh a form 3
Refresh/ Requery 3

Back
Top