How to show or hide a menu form in VB NET?

+1 vote
asked by about Microsoft Visual Studio 2008
edited by

How to show or hide a menu form in VB NET?

1 Answer

0 votes
No avatar answered by (193k points)

To display a form menu you need to use the Show() method and to hide it you need to use Hide():

Show syntax:

FormName.Show 
  or
FormName.Show(1,)

Hide syntax:

FormName.Hide

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...