Use one form to run another?

R

Ross

How do I fire one procedure in a form from another Form
(popup)? ie run a subroutine from information entered to
a popup form.

Thanks
 
M

Marshall Barton

Ross said:
How do I fire one procedure in a form from another Form
(popup)? ie run a subroutine from information entered to
a popup form.

Make the procedure Public, then you can call it using this
kind of syntax:

Forms!formmame.procedurename
 
G

Guest

Hey Marsh, Thanks again!

Perfect

Ross
-----Original Message-----


Make the procedure Public, then you can call it using this
kind of syntax:

Forms!formmame.procedurename
 
Top