Is there a way to hide an entire menu bar after your select an item in that same menu bar??
Printable View
Is there a way to hide an entire menu bar after your select an item in that same menu bar??
What kind of control is this menubar? An ordinary MenuStrip?
Use Hide/Show.
For some reason it won't give me a .hide property. I'm not sure if its because i'm trying to hide the menu bar after i select a menu item or not. Is there another way to do this?
in 2005
maybe in 2003 it'sVB Code:
Me.MainMenuStrip = NothingVB Code:
Me.MainMenu = Nothing
And you should remove it from the Controls property (probably)VB Code:
Me.Controls.Remove(MenuStrip1)