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:
  1. For Each Menu In Me.Menus
  2.   DoEvents
  3.   Menu.Visible = False
  4.   Menu.Enabled = False
  5. Next