I want to creat another instance of the same form on the desktop without having to use a MDI form
Any takers
Printable View
I want to creat another instance of the same form on the desktop without having to use a MDI form
Any takers
Option Explicit
Private Sub Command1_Click()
Dim asd As New Form1
asd.Show
End Sub ' tell me if that what you need