Page 1 of 1

how to design template

Posted: Fri Jun 10, 2016 1:34 pm
by cyrus
how to design template then load using c#

Re: how to design template

Posted: Fri Jun 10, 2016 5:30 pm
by Alex K.
Hello,

You can use the Designer.exe from installation pack or use the following code for call designer in your code:

Code: Select all

var report = new StiReport();
report.Design();
for load report template:

Code: Select all

var report = new StiReport();
report.Load("report.mrt");
reportt.Render();
report.Show();
Thank you.