I have a problem with refreshing a subform from another form in navigation form Here it is:
I have a form called MainForm in it is one sub form called MainSubForm.. From the link in a row in MainSubForm if you click it will open the third form like popup called ClientForm that will show the details of client on row selected on MainSubForm. Till here is everything ok, but in popup ClientForm form I have to edit some data, clos ClientForm and refresh the MainSubForm. My code in ClientForm is like this:
Forms.MainForm.MainSubForm.Form.Requery
DoCmd.Close
When I open the MainForm normally it is work perfect, but when I open the MainForm form from my Navigation Form it is not working.
Info: I have navigation form that I put all my forms that i needet in there ( MainSubForm not in navigation form )
Thanx in advance,