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?
Printable View
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?
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.