PDA

Click to See Complete Forum and Search --> : Raising Events from outside module??


Falcondl
Nov 29th, 1999, 01:35 PM
Is it possible to, say, call an event in Form1 from Form2?
Say i want to generate a click event on form1, but through code in form2. How do i do this?

MicahCarrick
Nov 29th, 1999, 02:31 PM
Couldn't you just change the

Private Sub Form_Click()

to:

Public Sub Form_Click()

and then call it in form2 by using...

Form1.Form_Click

As far as I can tell that should work. But then again, I may not understand your question.