Refresh data on form

Core

Registered User.
Local time
Today, 12:24
Joined
May 27, 2008
Messages
79
I have two forms.

Form one, based on a query
Form two, based on specific record said query

When form two closes I would like form one to refresh with any changes made to the table/record and update itself.

Any advice.
 
Something like this might work

Code:
Sub FormTwo_Close
If Me.Dirty then
  Me.Dirty = False
End If

Forms!formOne.requery

End Sub
 

Users who are viewing this thread

Back
Top Bottom