‫۹ سال و ۴ ماه قبل، یکشنبه ۳ خرداد ۱۳۹۴، ساعت ۱۹:۴۹
انعطاف stimul بسیار بالاست 
بطور مثال:
Stimulsoft.Report.StiReport stiReport = new Stimulsoft.Report.StiReport();
stiReport.Load("Reports//YourReportName.mrt");
برای ارسال یک یا چند لیست:
stiReport.RegBusinessObject("Name1", List1);
stiReport.RegBusinessObject("Name2", List2);
stiReport.RegBusinessObject("Name3", List3);
برای ارسال DataTable:
DataSet ds = new DataSet();
ds.Tables.Add(YourDataTable);
stiReport.RegData(ds);
برای ارسال متغییر:
stiReport.Dictionary.Variables["Today"].Value = DateTime.Now.ToShortDateString();
میتوان همه‌ی این ها(لیست، متغییر، DataTable) را باهم یکجا به stimul ارسال کرد.
برای رفتن به حالت طراحی:
stiReport.Design();
برای نمایش گزارش:
stiReport.Compile();
stiReport.Render();
stiViewer.Report = stiReport;
stiViewer.Show();