Page 1 of 1
Modify the Report Designer
Posted: Tue Jul 16, 2019 5:46 am
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
Re: Modify the Report Designer
Posted: Tue Jul 16, 2019 7:31 am
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.
Re: Modify the Report Designer
Posted: Tue Jul 16, 2019 4:24 pm
by FT1
Oh, that's great!!
Thanks
Re: Modify the Report Designer
Posted: Tue Jul 16, 2019 9:51 pm
by Lech Kulikowski
Hello
We are always glad to help you!
Please let us know if you need any additional help.
Thank you.