how to design template
how to design template
how to design template then load using c#
Re: how to design template
Hello,
You can use the Designer.exe from installation pack or use the following code for call designer in your code:
for load report template:
Thank you.
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();
Code: Select all
var report = new StiReport();
report.Load("report.mrt");
reportt.Render();
report.Show();