Elahe
Elahe

Reputation: 1399

How to show Stimulsoft Report in C# windows form project?

Im using Stimulsoft for reporting in my c# windows project.

Its my code in C# win form project:

StiReport report = new StiReport();

report.Load(@"D:\MyReport.mrt");
report.Show();

the result is like this:

enter image description here

I want to know how can I show this report in Windows form without designer like above pic. The report should be displayed in my form. So, is there any control that i can add in my form and then I show my report in that viewer control? Same as CrystalReportViewer control? I want to show that in my forms, not in anothers.

Thanks for any helping...

Upvotes: 2

Views: 6178

Answers (1)

HighAley
HighAley

Reputation: 1329

You should use StiViewerControl.

Upvotes: 3

Related Questions