I have a Form, say FormA, which has a subform, say subFormA.
subFormA also has a subForm, say subFormB.
When the user double clicks a control on subFormB,
a popup form appears, say frmPopUp which shows all
the fields on subFormB on one form without having to scroll left and right.
When the user closes frmPopUp I want to be able to return to the same control and record number on subFormB that the user was looking at on frmPopUp (perhaps the user advanced a record or two on frmPopUp). I could do this by opening the form as a dialog form and having the control pass back into the original calling procedure, but I’m trying to do it from the close event of the frmPopUp. I am able to get the focus on the right control, but I don’t seem to be able to jump to the correct record number on subFormB during the close event of frmPopUp.
Does anyone have any suggestions on how to accomplish this so that the two forms stay in synch regardless of what record the user was looking at?
Thanks!
dftjsn