Using the Designer with Multiple Document Interface (MDI)
Our sample projects and report templates can help you learn the basics of working with our products.This example is outdated, you can check out the many other new examples in this category.This sample project shows how to use the report designer with Multiple Document Interface (MDI). This can be useful if you want to display the designer for your application, embed it in the interface. For this, it is enough to specify the parent form when calling the Designer:
private void menuItem2_Click(object sender, System.EventArgs e)
{
StiReport report = new StiReport();
report.Design(this);
}