StiToolsToolbarService bug ?

Stimulsoft Reports.NET discussion
Post Reply
lcruiser
Posts: 58
Joined: Mon Jul 31, 2006 1:07 am

StiToolsToolbarService bug ?

Post by lcruiser »

Hi,

I try to disable just the configurator in the tool bar with the following code

Code: Select all

    StiToolsToolbarService toolsService = StiToolsToolbarService.GetService();
    toolsService.ShowConfigurator = false;

    report = new StiReport(); 
    report.Design(this);
When I show the report in MDI form I got an error - Object not reference...

If I turn off the whole StiToolsToolbarService I have not problem, eg.

Code: Select all

    StiToolsToolbarService toolsService = StiToolsToolbarService.GetService();
    toolsService.ServiceEnabled = false;

    report = new StiReport();
    report.Design(this);
Is it by design that I can't disable just one button?

Thanks.
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

StiToolsToolbarService bug ?

Post by Edward »

We will check the issue and inform you about results in this topic.

Thank you.
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

StiToolsToolbarService bug ?

Post by Vital »

Problem fixed. Patch will be included to build from 9 April.

Thank you.
lcruiser
Posts: 58
Joined: Mon Jul 31, 2006 1:07 am

StiToolsToolbarService bug ?

Post by lcruiser »

it works, thankyou.
Post Reply