Making menuBar in Access

  • Thread starter Thread starter ReidarT
  • Start date Start date
R

ReidarT

Can I make a menubar like a web-based menubar in Access.
I know how to make a menu on top of the screen, but I want it below the
toptext of the form.
regards
reidarT
 
ReidarT said:
Can I make a menubar like a web-based menubar in Access.
I know how to make a menu on top of the screen, but I want it below the
toptext of the form.
regards
reidarT

You can certainly place buttons at the top of the form that perform menu
commands. If you want more of a menu look as opposed to a toolbar look you
can place labels at the top of the form and in their click event display a
custom shortcut menu. It will appear on screen at the spot where the
cursor is positioned so it appears very similar to a menu bar. The command
you would need is...

CommandBars![NameOfShortcutMenu].ShowPopup
 
Back
Top