Are you calling the form through code?
Me.Name would get the name of the form if you were calling from a button on
a form.
DoCmd.OpenForm "PopUpForm", , , , , , Me.Name
Alternatively
DoCmd.OpenForm "PopUpForm", , , , , , "MyWondrousForm"
In the close event of the Popup Form
DoCmd.OpenForm Me.OpenArgs
or
Forms(Me.OpenArgs).Visible = True
>> Can you use the OpenArgs to pass the pop-up form the name of the
>> "calling" form? Then you could use that form name to specify which form
[quoted text clipped - 27 lines]
> Thanks
> DS
DS - 29 Oct 2005 04:03 GMT
> Are you calling the form through code?
> Me.Name would get the name of the form if you were calling from a button on
[quoted text clipped - 43 lines]
>>Thanks
>>DS
Thanks, I'll give it a try.
DS