Hi Suresh,
Thanks for the code snippet. You could simply select any TabbedMDI child by using code like :
this.tabbedMDIchild.Activate();
If you wish to select a particular page from a list of tabbedMDI children, then you could code as follows :
foreach(Form fm in tabbedMDIManager.MdiChildren)
{
if (fm.Text == "some text")
{
fm.Activate();
}
}
I have also attached a
sample here which illustrates the same. Please refer to it and let me know if this meets your requirements. Thanks for choosing Syncfusion products.
Regards,
Guru Patwal
Syncfusion, Inc.