how to design template

Stimulsoft Reports.NET discussion
Post Reply
cyrus
Posts: 2
Joined: Fri Jun 10, 2016 12:04 pm

how to design template

Post by cyrus »

how to design template then load using c#
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: how to design template

Post 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.
Post Reply