How to show or hide a menu form in VB NET?
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