protected override void OnStartUp()
{
if( ChartControl != null )
{
System.Windows.Forms.Control[] controls = ChartControl.Controls.Find("tsrTool", false);
....
...
}
}
So my question is, should I be able to check
if( ChartControl != null )
Thanks.

Comment