Requery Help

choward

Registered User.
Local time
Today, 06:57
Joined
Jan 31, 2008
Messages
39
Hi,

I think this might be quite common but i cant find anything relevant on google.

I have 2 Queries in a form in Table View - one the subform of the other. I want to requery the parent table after updating the child form.

i'm using this VBA code (it doesn't work) :

DoCmd.Requery ([Parent Query])

Any help is appreciated.
 
In the After Update event of the Subform use:

Me.Parent.Requery
 

Users who are viewing this thread

Back
Top Bottom