outlook express style toolbar

A

Adrian Brown

Is there an easy way (before i create a form and use that) to create tool
bars with large icons on similar to that on outlook express etc?
 
J

JohnFol

Yes, have a look for Command Bars

"Microsoft Access includes command bars, which are programmable toolbars and
menu bars. Using command bars, you can create custom toolbars and menus for
your application."
 
J

JohnFol

Dim cmb As CommandBar
Set cmb = Application.CommandBars.Add("MyCommandBar")
Dim cbc As CommandBarControl
Set cbc = cmb.Controls.Add(msoControlButton)
cbc.Caption = "Button1"
cbc.Style = msoButtonCaption

cmb.Visible = True
 
Top