
-----------------------------------
Mint
Fri Jun 18, 2004 5:11 pm

Form copy.
-----------------------------------
How would I make a form copy it's self when a a cmdbutton is clicked, that or generate a new one, or copy another one.

Thanks.

-----------------------------------
Brightguy
Fri Jun 18, 2004 9:46 pm

Re: Form copy.
-----------------------------------
Depends how you want the form to "copy".  See if this works for you:
Private Form2 As New Form1

Private Sub Command1_Click()
    Form2.Show
End Sub
