Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Menu bar in Access form

Status
Not open for further replies.

Miao

Technical User
Dec 28, 2002
6
CA
Hi! How can I add a menu bar on a data entry form in Access 2000?

Many thanks.

Miao.
 
First you need to make a menubar this you can do by right clicking on the default menu en choose customize. There you click on the tab toolbars end click new. by default it will be a toolbar you will have to select the properties of your menu and change it type to menubar. After this you can add menuitems.

then you have to write some code in the open event of your form to make it visible

CommandBars("custom 1").visible = true

on close you write this

CommandBars("custom 1").visible = false

this will make it disappear
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top