1 Attachment(s)
[RESOLVED] Removing Toolbar Icons
I have a report that is created in preview mode, and at the top of the page there are a few icons/toolbar options I want to either remove or disable (prefer remove). How can I accomplish this in Access?
I have attached an image of the tool bar and I want to remove/hide all the icon/options to the right of the Close button.
Thanks In Advance.
Re: Removing Toolbar Icons
After alot of trial and error I found how to block them.
VB Code:
Application.CommandBars("Print Preview").Controls("Office Links").Visible = False
Application.CommandBars("Print Preview").Controls("Database Window").Visible = False
Application.CommandBars("Print Preview").Controls("New Object").Visible = False
Application.CommandBars("Print Preview").Controls("Setup").Visible = False
Application.CommandBars("Print Preview").Controls("Microsoft Access Help").Visible = False