Reputation: 1399
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:
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