Page 1 of 1

Wizard

Posted: Wed Jun 21, 2006 6:46 am
by Donisetti Ferreira Cosma
How to work with wizard in code?

Wizard

Posted: Wed Jun 21, 2006 6:49 am
by Edward
Please provide me with more details

Wizard

Posted: Wed Jun 21, 2006 8:43 am
by Donisetti Ferreira Cosma
In the Visual Studio , we can use wizard for the creation of reports, as to enable these resources for end users.

see:

http://www.stimulsoft.com/livedemos/Rep ... izard.html

I want use it, in designer or in application.

Wizard

Posted: Wed Jun 21, 2006 9:03 am
by Vital

To call report wizard use this code:

Code: Select all

StiReport report = new StiReport();
report.RegData("MyData", dataSet1);
report.Dictionary.Synchronize();

Stimulsoft.Report.Design.Wizards.StiStandardWizardService wizard = 
	new Stimulsoft.Report.Design.Wizards.StiStandardWizardService();
		
StiReport newReport = wizard.CreateReport(report);
if (newReport != null)newReport.Design();
Thanks.

Wizard

Posted: Wed Jun 21, 2006 9:10 am
by Donisetti Ferreira Cosma
Thanks.