Custom Toolbars in Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi

I have a custom I would like displayed in all forms - is there a generic command I can put somewhere for this or do I need to set the toolbar in each form individually

Thanks in advance for any hel

Sheila
 
Hi Sheila

In the Form_Open, place the following code

DoCmd.ShowToolbar "ToolbarName", acToolbarYes

In the Form Close, place the following code

DoCmd.ShowToolbar "ToolbarName", acToolbarNo


Maurice
 
Back
Top