AD
Administrator
Syncfusion Team
July 7, 2004 06:25 PM UTC
Hi Daniel
You could do this in the MDI Parent form''s MdiChildActivate event as demonstrated in the following code snippet:
this.MdiChildActivate += new System.EventHandler(this.MDIChildActivated);
protected void MDIChildActivated(object sender, System.EventArgs e)
{
if (this.ActiveMdiChild != null)
{
this.Text = "Application Name-" + "[" + this.ActiveMdiChild.Text + "]";
}
}
Regards
Arun