
Calling A Function In One Form From A Funciton In Another Form
Hi Rodney,
If both the forms are open and funFunction1 is declared as Public, then
something like this in frmForm2
Private Sub Command1_Click()
Call funFunction2
End Sub
Private Function funFunction2()
Call Forms("frmForm1 ").funFunction1
End Function
HTH
--
Dev Ashish (Just my $.001)
---------------
The Access Web ( http://home.att.net/~dashish )
---------------
:What is the syntax to call a public function from one form from a
:funciton in another form.
:
:For example:
:
:frmForm1 has funFunction1
:frmForm2 has funFunction2
:
:How can I call funFunction1 from funFunction2 ?
:
:Thanks.
:
:Rodney M. Gabriel
:
: