I'm new to VB.Net and I have to make a Lucky 7 program that I already did in VB. :(
But it doesn't seem to like [frmForm.Show] & [frmForm.Hide] &[Unload frmForm].
Thanks in advance.
Printable View
I'm new to VB.Net and I have to make a Lucky 7 program that I already did in VB. :(
But it doesn't seem to like [frmForm.Show] & [frmForm.Hide] &[Unload frmForm].
Thanks in advance.
To show a form:
Dim f as New frmForm()
f.show()
To unload a form:
f.Close()
Dim F As New Form1()
F.Show
F.Close
To Late ohh well
Don't you hate that...lol.
declaring your variables in a module is the easiest way ! then you can code just like vb6 without need for declaring your forms variables
What about hiding a form? Aren't there both hiding/showing and loading/unloading a form?
I guess the same .
There are only Show and Close?
For both hiding/showing and loading/unloading?
Try the visible property. Set it to true to make it visible, and false to make it invisible.