Menu Bar On A Form

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

Guest

Is it possible to have a menu bar with drop down options on an access form?
If so, how can it be done? There needs to be two or three menu headings and
five to six options in the submenus. The submenu options need to call
actions like print a record, print multiple records or display a report. If
it is not possilbe, then is there a way to have buttons organized in a
toolbar on the form? Same requirements as above.
Any help would be great, Thanks
Jeremy
 
bbdobuddy said:
Is it possible to have a menu bar with drop down options on an access
form? If so, how can it be done? There needs to be two or three menu
headings and five to six options in the submenus. The submenu
options need to call actions like print a record, print multiple
records or display a report. If it is not possilbe, then is there a
way to have buttons organized in a toolbar on the form? Same
requirements as above.
Any help would be great, Thanks
Jeremy

Use the Click event of a lable to display a shortcut menu. The shortcut
menu can include sub-menus.

CommandBars![CommandBarName].ShowPopup
 
Back
Top