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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Outlook Express Style Toobars 2
Outlook Express 6 4
Expression is typed...... 2
Access Query problem 1
Form's title bar question 3
Global Properties Change 1
Expression in forms 5
Missing Toolbars 4

Back
Top