Quote:
Originally posted by Nate Smith
in .NET, it's a bit trickier. The catch to remember is that every form in VB.NET is considered an object. Now, I think all the code below is correct, but I don't have .NET on this machine right now to try it out...
PHP Code:
Dim frmShowMe as frmFormToDisplay
frmShowMe = New frmFormToDisplay
frmShowMe.Show
|
Actually, you are almost correct.
It's
PHP Code:
Dim frmholder as new frmtodisplay
frmholder.activate()
frmholder.visible = true
There's only 1 problem w/ this, if you close out of it, and try to show the frm again, it crashes.