|
-
Nov 29th, 1999, 02:35 PM
#1
Thread Starter
Member
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?
-
Nov 29th, 1999, 03:31 PM
#2
Addicted Member
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|