This sample project demonstrates how to edit a report in the designer. First of all, create new 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:

Editing a Report Template in the Designer

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.