Disabling Quick-Access toolbar-Save

Stimulsoft Reports.NET discussion
Post Reply
Tobias
Posts: 104
Joined: Mon Nov 24, 2008 8:44 am

Disabling Quick-Access toolbar-Save

Post by Tobias »

I have a hard time to customize the designers "save-behaviour" the way I want it to.

I'm doing

Code: Select all

            StiOptions.Designer.MainMenu.ShowFileReportSaveAs = false;
            StiOptions.Designer.MainMenu.ShowFileReportSave = false;
            StiOptions.Designer.MainMenu.ShowFileFormNew = false;
            StiOptions.Designer.MainMenu.ShowFileReportOpen = false;

            StiOptions.Designer.Ribbon.ShowMainMenuReportSaveAs = false;
            StiOptions.Designer.Ribbon.ShowMainMenuReportSave = false;
            StiOptions.Designer.Ribbon.ShowMainMenuNew = false;
            StiOptions.Designer.Ribbon.ShowMainMenuReportOpen = false;

...but still see the save button in the Quick Access toolbar.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Disabling Quick-Access toolbar-Save

Post by HighAley »

Hello.

It is only possible to hide the whole Quick Access toolbar from code with next property:

Code: Select all

StiRibbonDesignerUserControl.ShowQuickToolbar
How do you run the Designer?

Thank you.
Post Reply