Page 1 of 1
StiDesigner doesn't show Bandheaders
Posted: Wed Aug 23, 2006 3:30 am
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
StiDesigner doesn't show Bandheaders
Posted: Wed Aug 23, 2006 4:49 am
by Vital
Please see MainMenu.View.ShowHeaders and MainMenu.View.ShowGrid.
Thanks.
StiDesigner doesn't show Bandheaders
Posted: Wed Aug 23, 2006 5:07 am
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
StiDesigner doesn't show Bandheaders
Posted: Wed Aug 23, 2006 7:39 am
by Vital
Sorry, this is not source code. When designer sucesfully opened go to main menu of designer and select menu item "View".
Thanks.
StiDesigner doesn't show Bandheaders
Posted: Wed Aug 23, 2006 7:56 am
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
StiDesigner doesn't show Bandheaders
Posted: Wed Aug 23, 2006 10:47 am
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.
StiDesigner doesn't show Bandheaders
Posted: Thu Aug 24, 2006 1:51 am
by scotty
So I it is not possible to design two ore more reports at the same time
When can we expect the next version or is it possible to get a patch for this issue?
thanks
StiDesigner doesn't show Bandheaders
Posted: Thu Aug 24, 2006 9:44 am
by Vital
why not?
Code: Select all
report1.Design(false);
report2.Design(false);
In next version will be available designer as control.
Thanks.
StiDesigner doesn't show Bandheaders
Posted: Mon Mar 05, 2007 8:50 am
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.