Hi,
I want to hide service configurator. (stireport 2007.1) (My concern have stireport2007.1 code)
How i do that ? (using stireport2007.1 source code)
Is there any possibility to hide service configurtor using .config file ?
Thanks in advance,
Jayakumar
How to hide Service Configurator???
-
- Posts: 85
- Joined: Sat Jan 20, 2007 4:21 am
How to hide Service Configurator???
Use this code:
Also you may to save your settings of disigner config file, with:
Please see the sample "DesignerManagement".StiToolsToolbarService tools = StiToolsToolbarService.GetService();
tools.ShowConfigurator = false;
Also you may to save your settings of disigner config file, with:
and load this settings later with:StiConfig.Save();
Thank you.StiConfig.Load();
-
- Posts: 85
- Joined: Sat Jan 20, 2007 4:21 am
How to hide Service Configurator???
Hi,
i use following lines.
StiReport report = new StiReport();
StiToolsToolbarService tools = StiToolsToolbarService.GetService();
tools.ShowConfigurator = false;
report.Design();
It shows Following Error:
"Object reference not set to an instance of an object" (Null Reference Exception)
How to Solve it???
Thanks in Advance,
Jayakumar
i use following lines.
StiReport report = new StiReport();
StiToolsToolbarService tools = StiToolsToolbarService.GetService();
tools.ShowConfigurator = false;
report.Design();
It shows Following Error:
"Object reference not set to an instance of an object" (Null Reference Exception)
How to Solve it???
Thanks in Advance,
Jayakumar
How to hide Service Configurator???
What version of StimulReport.Net you use? For version 2007.1 this code is worked.