Make toolbar visible
Posted: Sun Jun 22, 2008 12:28 am
Hi
SR_2008[1].06.08_R2005 break the following codes which I use to make sure the toolbar is visible.
I get the following compilation error:
The best overloaded method match for 'Stimulsoft.Report.Design.Toolbars.StiToolbarService.GetToolbarServices(Stimulsoft.Report.Design.StiDesigner)' has some invalid arguments
Argument '1': cannot convert from 'Stimulsoft.Report.Design.IStiDesigner' to 'Stimulsoft.Report.Design.StiDesigner'
Thanks.
SR_2008[1].06.08_R2005 break the following codes which I use to make sure the toolbar is visible.
Code: Select all
StiService[] services = StiToolbarService.GetToolbarServices(vrd.Designer);
foreach (StiToolbarService tbservice in services)
{
if (tbservice.ToolBar != null)
{
tbservice.ToolBar.Visible = true;
}
}
I get the following compilation error:
The best overloaded method match for 'Stimulsoft.Report.Design.Toolbars.StiToolbarService.GetToolbarServices(Stimulsoft.Report.Design.StiDesigner)' has some invalid arguments
Argument '1': cannot convert from 'Stimulsoft.Report.Design.IStiDesigner' to 'Stimulsoft.Report.Design.StiDesigner'
Thanks.