Wizard

Stimulsoft Reports.NET discussion
Post Reply
Donisetti Ferreira Cosma
Posts: 9
Joined: Fri Jun 09, 2006 12:23 pm
Location: Brasil

Wizard

Post by Donisetti Ferreira Cosma »

How to work with wizard in code?
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Wizard

Post by Edward »

Please provide me with more details
Donisetti Ferreira Cosma
Posts: 9
Joined: Fri Jun 09, 2006 12:23 pm
Location: Brasil

Wizard

Post 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.
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

Wizard

Post 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.
Donisetti Ferreira Cosma
Posts: 9
Joined: Fri Jun 09, 2006 12:23 pm
Location: Brasil

Wizard

Post by Donisetti Ferreira Cosma »

Thanks.
Post Reply