Modify the Report Designer

Stimulsoft Reports.NET discussion
Post Reply
FT1
Posts: 11
Joined: Sun Mar 03, 2019 1:44 am

Modify the Report Designer

Post by FT1 »

We would like to add the Report designer to our software but in a reduced functionality version
Is there a way to disable (or hide) some of the designer capabilities? like a using a fixed datasource or disable export?

Best Regards

Francesco
Lech Kulikowski
Posts: 6245
Joined: Tue Mar 20, 2018 5:34 am

Re: Modify the Report Designer

Post by Lech Kulikowski »

Hello,

Yes. For customizations, there are many options, service, etc
for example:

Code: Select all

foreach(var service in StiOptions.Services.Databases)
{
    // if (service is StiMySqlDatabase)
    service.ServiceEnabled = false;
}

StiOptions.Designer.MainMenu.ShowFileReportNew = false;
// .. 
Thank you.
FT1
Posts: 11
Joined: Sun Mar 03, 2019 1:44 am

Re: Modify the Report Designer

Post by FT1 »

Oh, that's great!!

Thanks
Lech Kulikowski
Posts: 6245
Joined: Tue Mar 20, 2018 5:34 am

Re: Modify the Report Designer

Post by Lech Kulikowski »

Hello

We are always glad to help you!
Please let us know if you need any additional help.

Thank you.
Post Reply