What code would I use to display a VB.NET form (with the required object reference)?
Printable View
What code would I use to display a VB.NET form (with the required object reference)?
if you just want to display another form ( eg: from Form1 show Form2 )
VB Code:
[COLOR=blue]Dim[/color] frm2 [color=blue]As New[/color] Form2() frm2.Show()
Thanks
I tried your code-but it still requires a object references, and fails to build successfuly-any ideas?