Requery

Eddie Mason

Registered User.
Local time
Today, 15:20
Joined
Jan 31, 2003
Messages
142
I have a form (FormA) which contains two sub forms the first sub form (SubFormB) has a command button that runs an action which modifies data in a table. The second sub form (SubFormC) is a dynaset that has as its record source the data that has been modified.

The command button works well and changes the data however, after it has been run, I cannot get it to requery the record source in SubFormC to show the new data. Is there any way of getting to do this?

Kind regards,

Eddie
 
Try;
forms![FormA]![SubFormC].Form.Requery
Or something along those lines!

Let me know if this works!
 
Try the below:
Me.Parent.[SubFormC].Form.Requery
 
Thank you very much for helping me with this problem it is now resolved.

Kind regards,

Eddie
 

Users who are viewing this thread

Back
Top Bottom