StiDesigner doesn't show Bandheaders

Stimulsoft Reports.NET discussion
Post Reply
scotty
Posts: 28
Joined: Tue Jul 04, 2006 2:05 am
Location: Austria

StiDesigner doesn't show Bandheaders

Post by scotty »

When I use this code

StiReport report = new StiReport();
report.Load(@"c:\MyReport.mrt");

StiDesigner designer = new StiDesigner(report);
designer.ShowInTaskbar = true;
designer.Show();

the ReportDesigner doesn't show the Bandheaders and the Grid

Please help
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

StiDesigner doesn't show Bandheaders

Post by Vital »


Please see MainMenu.View.ShowHeaders and MainMenu.View.ShowGrid.

Thanks.
scotty
Posts: 28
Joined: Tue Jul 04, 2006 2:05 am
Location: Austria

StiDesigner doesn't show Bandheaders

Post by scotty »

Sorry I can't find MainMenu.View.ShowHeaders and MainMenu.View.ShowGrid!

I use Version 1.60.0.0
Please post the complete sourceCode

Thanks
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

StiDesigner doesn't show Bandheaders

Post by Vital »


Sorry, this is not source code. When designer sucesfully opened go to main menu of designer and select menu item "View".

Thanks.
scotty
Posts: 28
Joined: Tue Jul 04, 2006 2:05 am
Location: Austria

StiDesigner doesn't show Bandheaders

Post by scotty »

Hi

Thanks for your answer. When i start the reportdesigner with the posted sourcecode, both menuitems are checked, but on the reportpage the headers and the grid are not visible!

Please check this issue with a testprogram (and with my sourcecode)

thanks
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

StiDesigner doesn't show Bandheaders

Post by Vital »


Please do not call report designer directly. Report designer requre report to work (in next version this situation will be changed).
Use following code to start report designer:

Code: Select all

Stimulsoft.Report.Design.StiDesigner.ShowDesignerInTaskbar = true;

StiReport report = new StiReport();
report.Design();

Thank you.
scotty
Posts: 28
Joined: Tue Jul 04, 2006 2:05 am
Location: Austria

StiDesigner doesn't show Bandheaders

Post by scotty »

So I it is not possible to design two ore more reports at the same time :evil:

When can we expect the next version or is it possible to get a patch for this issue?

thanks
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

StiDesigner doesn't show Bandheaders

Post by Vital »

why not?

Code: Select all

report1.Design(false);
report2.Design(false);
In next version will be available designer as control.

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

StiDesigner doesn't show Bandheaders

Post by Edward »

Now the Designer in the StimulReport.Net may be used as Control. Please refer to it as StiDesignerControl. This control is in Stimulsoft.Report.dll.

Thank you.
Post Reply