Page 1 of 1

How to turn off the Start Page of stimulsoft report version 2022.1.6

Posted: Fri Feb 23, 2024 7:24 am
by khoiphan
Hello, I'm using stimulsoft version 2022.1.6. But I don't want to turn off the Start Page in the Designer screen.
Here is my example code.

Code: Select all

 var options = new Stimulsoft.Designer.StiDesignerOptions();
            options.height = "100%";
            options.appearance.fullScreenMode = false;
            options.appearance.showReportTree = false;

            options.toolbar.showFileMenu = false;
            options.toolbar.showSaveButton = this.editCustomFormAllowed;

            options.toolbar.showSetupToolboxButton = false;
            options.toolbar.showNewDashboardButton = false;
            options.toolbar.ShowInsertButton = true;

Re: How to turn off the Start Page of stimulsoft report version 2022.1.6

Posted: Fri Feb 23, 2024 12:15 pm
by Max Shamanov
Hello,

Please specify whether you do not want to show the start page or you want to display it.
In the settings menu you can choose to display the report page at once.
Please see the attached image.

Thank you.

Re: How to turn off the Start Page of stimulsoft report version 2022.1.6

Posted: Mon Feb 26, 2024 3:58 am
by khoiphan
Thank you for your support. But I want to close it by Code ( config option).
Can you give me the name of config?

Re: How to turn off the Start Page of stimulsoft report version 2022.1.6

Posted: Mon Feb 26, 2024 2:12 pm
by Max Shamanov
Hello.

We need more time to prepare an answer for you.
We will let you know when we get any results.

Thank you.

Re: How to turn off the Start Page of stimulsoft report version 2022.1.6

Posted: Thu Feb 29, 2024 6:42 am
by Max Shamanov
Hello,

Please try to use the following code and desinger will start from the empty report.

Code: Select all

var report = new Stimulsoft.Report.StiReport();
            designer.report = report;
Thank you.