How do i find what form opened another form?
Thanks.
Luis
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
"Luis" <Lu...@discussions.microsoft.com> wrote in message
news:23D3374A-C52E-409E...@microsoft.com...
Private Sub Form_Open(Cancel As Integer)
Dim frmCalling as Form
Set frmCalling = Screen.ActiveForm
MsgBox "I have been called by " & frmCalling.Name
End Sub
UpRider
"Luis" <Lu...@discussions.microsoft.com> wrote in message
news:23D3374A-C52E-409E...@microsoft.com...