How can I make a form always return to the form that called it?

k_c_morrissey

Registered User.
Local time
Today, 18:57
Joined
Apr 15, 2005
Messages
13
I have several forms that can be called from more than one other form, but I need to build my forms so that the user is returned to the form from which they started.

I have looked in the help files and FAQ and I can't find what I am looking for.

Please, can someone direct met to the required information or tell me how to achieve this?

Thanks,
Kev.
 
Pass the name of the calling form through with the OpenArgs propert.

i.e.

Code:
DoCmd.OpenForm "MyForm", , , , , , Me.Name
 

Users who are viewing this thread

Back
Top Bottom