Computer Science Canada

Form copy.

Author:  Mint [ Fri Jun 18, 2004 5:11 pm ]
Post subject:  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.

Author:  Brightguy [ Fri Jun 18, 2004 9:46 pm ]
Post subject:  Re: Form copy.

Depends how you want the form to "copy". See if this works for you:
code:
Private Form2 As New Form1

Private Sub Command1_Click()
    Form2.Show
End Sub


: