VBForums
>
Visual Basic
>
Visual Basic 6 and Earlier
> Create another instance of form on desktop
PDA
Click to See Complete Forum and Search -->
:
Create another instance of form on desktop
Noel Scully
Jan 21st, 2000, 12:51 AM
I want to creat another instance of the same form on the desktop without having to use a MDI form
Any takers
Jan 21st, 2000, 01:04 AM
Option Explicit
Private Sub Command1_Click()
Dim asd As New Form1
asd.Show
End Sub ' tell me if that what you need
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.