what is the statement to show form2 from form1 when click a cmd button in frm1?
Printable View
what is the statement to show form2 from form1 when click a cmd button in frm1?
dim frm2 as New Form2
frm2.showdialog
Hi,
Dim f As New Form2()
f.Show()
Have a nice day
and just to show yet another huge variation in code:
dim frm as new form2
frm.show
I suggest you rename cmd to Button1:rolleyes: