MDI Application Sample?
Posted: Wed Nov 15, 2006 4:05 pm
Is there a sample application showing the use of StimulReport in an MDI application?
Reporting tool and data analytics tools for creating reports and dashboards in ASP.NET, ASP.NET MVC, .NET Core, Blazor, Angular, PHP, Python, WPF, JavaScript, and Java applications.
https://forum.stimulsoft.com/
Code: Select all
private void OnClickNew(object sender, EventArgs e)
{
StiConfig.Load(@"C:\Report\ReportNoMenuFullConfig.xml");
StiReport report = new StiReport();
report.Design(this);
report.Designer.FormBorderStyle = FormBorderStyle.Sizable;
report.Designer.WindowState = FormWindowState.Normal;
}
Code: Select all
StiMainMenuService mainMenu = StiConfig.Services.GetService(typeof(StiMainMenuService)) as StiMainMenuService;
mainMenu.MainMenuType = StiMainMenuType.Enhanced;
mainMenu.MainMenuType = StiMainMenuType.Standard;