Results 1 to 3 of 3

Thread: Instances of forms

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 1999
    Posts
    79

    Post

    Hi. I wonder if anyone can help. One of my projects at the moment is making a little task reminder, that pops up at certain times telling me what to do. I want to have one form containing the pop ups, but I want the program when it is being executed make another instance of this form. Is this possible?

  2. #2
    Guest

    Post

    Sure you can add this code to a commandbutton called Command1 and add a form called frmPopup

    Example:

    Code:
    Private Sub Command1_Click()
        Dim frmNew As Form
        Set frmNew = New frmPopup
        frmNew.Show
    End Sub


    ------------------

    Vincent van den Braken
    EMail: [email protected]
    ICQ: 15440110
    Homepage: http://www.azzmodan.demon.nl




  3. #3

    Thread Starter
    Lively Member
    Join Date
    Dec 1999
    Posts
    79

    Post

    Great. Thanks a lot.

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