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."
> 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?
JohnFol - 21 Mar 2005 12:34 GMT
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
> Yes, have a look for Command Bars
>
[quoted text clipped - 4 lines]
>> 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?