main Access 2003 Menu Bar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello!

I'm developing a 'StartUp' form and in this form I would like to make
'invisible' the main Access 2003 Menu Bar. On my 'close' button, I will make
if visible again... So, not sure if I could use the 'DoCmd' or not...

Thanks in advance...
 
Hello!

I'm developing a 'StartUp' form and in this form I would like to make
'invisible' the main Access 2003 Menu Bar. On my 'close' button, I will make
if visible again... So, not sure if I could use the 'DoCmd' or not...

Thanks in advance...

Not sure what you mean by 'the main Access 2003 Menu Bar", but perhaps
it's this.

Code the Start Up Form's Open event:
DoCmd.ShowToolbar "Menu Bar", acToolbarNo

Code the Form's Close event
DoCmd.ShowToolbar "Menu Bar", acToolbarYes
 
fredg!!

I found a 'post' of yours from a while back that 'fixed' me up just great!
So, thanks alot!!
 
Back
Top