Editing a Report Template in the Designer
Our sample projects and report templates can help you learn the basics of working with our products.This sample project demonstrates how to edit a report in the designer. First of all, create new
Then, use
In the screenshot below you can see the result of the sample code:

StiReport():
private void buttonCreate_Click(object sender, EventArgs e)
{
var report = new StiReport();
report.Design();
}
...
Then, use
Load method to attach report to the designer:
...
private void buttonEdit_Click(object sender, EventArgs e)
{
var report = new StiReport();
report.Load(@"Reports\SimpleList.mrt");
report.Design();
}In the screenshot below you can see the result of the sample code:
