How can a form show twice in one form only
Form.show
form.show
I know this will not work but how can we do it to show a form twice in one form
Printable View
How can a form show twice in one form only
Form.show
form.show
I know this will not work but how can we do it to show a form twice in one form
dim x as form
set x = new form1
x.show
:cool:Code:Dim frm1 As Form
Dim frm2 As Form
Set frm1 = New Form1
Set frm2 = New Form1
Load frm1
Load frm2
frm1.Caption = "1st instance of Form1"
frm2.Caption = "2nd instance of Form1"
frm1.Show
frm2.Show