how can i show a form in VB.net??
in vb6: formName.show
thx
Guilherme Costa
Printable View
how can i show a form in VB.net??
in vb6: formName.show
thx
Guilherme Costa
suppose your current form is form2Quote:
Originally posted by gccosta
how can i show a form in VB.net??
in vb6: formName.show
thx
Guilherme Costa
dim frm2 as new form2
frm2.show
Also,
Will not allow the user to select a different form until the user is finished with Frm2. (Stops it flipping to the back if the user accidently clicks another form.)VB Code:
Dim Frm2 as New form2 Frm2.Show[b][i]dialog()[/i][/b]