문제

I created a report with stimul and show it in my application.

StiReport report = new StiReport();
report.Load(System.Windows.Forms.Application.StartupPath + "\\Report.mrt");
report.RegData("Table", lststudent);
report.Compile();
report.Show();

I want that users change report design without install stimul in user's system.

It is possible that users change report design?

도움이 되었습니까?

해결책

Stimulsoft has a built-in functionality to let end user changes the design of the reports distributed with your application.
Of course, on the end user machine, you need to install some distributable assemblies listed in the User Manual help file, but you don't need to install the full report designer on the end user machine (and you are not legally allowed to install it) .

The only thing you need to do in code is to call the

report.Design();

instead of report.Show();

다른 팁

You even don't need to install assemblies. It's enough to put all necessary assemblies to the bin folder of your project.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top