hello guys
I remember that the command form1.visible = false was the command to hide a form. This does not seem to be working in VB.net
so my question is
Howto hide a Form in VB.net ??
Printable View
hello guys
I remember that the command form1.visible = false was the command to hide a form. This does not seem to be working in VB.net
so my question is
Howto hide a Form in VB.net ??
have you tried Form.Hide()?Quote:
Originally posted by olger901
Howto hide a Form in VB.net ??
doesnt work :(
try this :
VB Code:
Form1.Visible=False
Maybe you are trying to make your main form start invisible. If that's the case you can not do it by trying Form.Hide or Form.Visible=False.
It depends on what your doing but this will work in some circumstances:
Me.ActiveForm.Hide()