VS
Vallarasu S
Syncfusion Team
October 18, 2010 05:16 PM UTC
Hi Elad,
Thanks for your interest in Syncfusion products.
Use the following code to activate a tab in TabbedMDIManger
TabHost[] tabHosts = tabbedMDIManager1.TabGroupHosts;
Form[] MDIChilds = tabbedMDIManager1.MdiChildren as Form[];
if (MDIChilds != null && MDIChilds.Length >= 1)
// You can iterate through the MDIChilds collection for a specific from and,
// pass it to GetTabPageAdvFromForm() method
// tabs[0].MDITabPanel.SelectedTab = tabs[0].MDITabPanel.GetTabPageAdvFromForm(form);
tabHosts[0].MDITabPanel.SelectedTab = tabHosts[0].MDITabPanel.GetTabPageAdvFromForm(MDIChilds[1]);
Please let me know if you have concerns on this.
Regards
Vallarasu S.