Click to See Complete Forum and Search --> : File menu


DeeDee
July 27th, 2000, 08:34 AM
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?

AstonK
July 27th, 2000, 06:49 PM
Private Sub mnuNew_Click()
Dim Newform As Form
Set Newform = New Form1
Newform.Show
End Sub

DeeDee
July 28th, 2000, 08:11 AM
Thanks