This is probably easy to solve, but i cant figure it out.
How do you hide the menu, and when i mean THE menu, i mean as in all the menus at the top of a form.
I have an MDI form with a menu at the top:
File Edit Options Window Help
I just want to hide it or disable it until the user has logged in.
I was going to do a for loop something like this:
VB Code:
For Each Menu In Me.Menus DoEvents Menu.Visible = False Menu.Enabled = False Next




Reply With Quote