StiDesigner doesn't show Bandheaders
StiDesigner doesn't show Bandheaders
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
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
Please see MainMenu.View.ShowHeaders and MainMenu.View.ShowGrid.
Thanks.
StiDesigner doesn't show Bandheaders
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
I use Version 1.60.0.0
Please post the complete sourceCode
Thanks
StiDesigner doesn't show Bandheaders
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
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
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
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
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

When can we expect the next version or is it possible to get a patch for this issue?
thanks
StiDesigner doesn't show Bandheaders
why not?
In next version will be available designer as control.
Thanks.
Code: Select all
report1.Design(false);
report2.Design(false);
Thanks.
StiDesigner doesn't show Bandheaders
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.
Thank you.