outlook express style toolbar

  • Thread starter Thread starter Adrian Brown
  • Start date Start date
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?
 
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."
 
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
 
Back
Top