Can anyone tell me how I can, from an open form in my program, open another instance of the same form without doing anything to the one that is open? Thanks if anyone can help me.
Bill
Printable View
Can anyone tell me how I can, from an open form in my program, open another instance of the same form without doing anything to the one that is open? Thanks if anyone can help me.
Bill
Code:Private Sub Command1_Click()
Dim newfrm As New Form1
newfrm.Show
End Sub
Thats exaclty what I was after.
Bill