CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: File menu

  1. #1
    Join Date
    Jun 2000
    Posts
    21

    File menu

    I have a form that has a control array of pictureboxes on it. This form is the child of an MDI form. I want the user to click Open on the File menu (which is on the MDI form) and be able to open these forms multiple times (as many times as they press open). Is this possible, and if so how?


  2. #2
    Join Date
    Jul 2000
    Location
    New Jersey
    Posts
    28

    Re: File menu

    Private Sub mnuNew_Click()
    Dim Newform As Form
    Set Newform = New Form1
    Newform.Show
    End Sub




  3. #3
    Join Date
    Jun 2000
    Posts
    21

    Re: File menu

    Thanks


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

Featured