I'm using the ultratabbedmdimanager in a windows forms application using vb.net. Can you tell me how to set the active tab at run time?
Thank you.
I'm fine, thank you. I have the information I need.
Hi,
Just checking if you had any further questions. Looks like Alan supplied your answer but if you had any follow-up questions, I’d be glad to help.
Hello,
You can call the Activate method on the Form for the Tab that you wish to activate.
Let me know if you have any questions with this matter.
Alan
Thank you but I'm not using the Ultratoolbarsmanager in this case. Just the Ultratabbedmdimanager. This doesn't seem to apply.
I translated Mike Dour’s response from this forum case to VB.
http://community.infragistics.com/forums/p/4573/21763.aspx
Dim activeChildManager As UltraToolbarsManager = Me.ultraToolbarsManager1.ActiveMdiChildManager
If activeChildManager Is Nothing Then
Return
End If
Dim childTab As RibbonTab = activeChildManager.Ribbon.Tabs("RibbonTabKey")
Dim parentTab As RibbonTab = childTab.AttachedParentTab
If parentTab Is Nothing Then
Me.ultraToolbarsManager1.Ribbon.SelectedTab = parentTab
I think this will give you the information you need. Let me know if you have more questions.