How do I make a form open more than once? Like a browser?
Printable View
How do I make a form open more than once? Like a browser?
Try this code. Make 2 Forms. Form1 and Form2 and put the following code into a CommandButton in Form1.
If you want to open the Form that you are currently working on (Form1) then just replace Form2 with Form1 like so.Code:Dim frmNew As New Form2
frmNew.Show
Code:Dim frmNew As New Form1
frmNew.Show
Try this
Code:Dim frmNew1 As New Form1
Dim frmNew2 As New Form1
' Open the first instance of the form
Load frmNew1
frmNew1.Show
' Open the second instance of the form
Load frmNew2
frmNew2.Show
ummm...kwell...thats the same thing megatron did.
yes, I think we make the post at the same time
Perfect! Thanks guys! :)