Results 1 to 2 of 2

Thread: Raising Events from outside module??

  1. #1

    Thread Starter
    Member
    Join Date
    Nov 1999
    Posts
    39

    Post

    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?

  2. #2
    Addicted Member
    Join Date
    May 1999
    Location
    Californ-I- A
    Posts
    207

    Post

    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
  •  



Click Here to Expand Forum to Full Width