How do you set a tooltab active when selecting a document
I have two tool tabs with different details on them, and wanted to set one or the other active when I add a document to the document tab section
Any idea how to make the tab show as currently there is no difference as I select the document the event fires, but nothing changes on the tooltabs
I have two tool tabs with different details on them, and wanted to set one or the other active when I add a document to the document tab section
Private Sub radDockMain_ActiveWindowChanged(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.Docking.DockWindowEventArgs) Handles radDockMain.ActiveWindowChanged 'This event fires when a document tab is changed Select Case e.DockWindow.Text Case "Schedule" MessageBox.Show("Schedule Selected") twSideMenu.Show() Case "Details" MessageBox.Show("Details Selected") 'Show the Shedule tool strip twDetails.Show() Case "Today" MessageBox.Show("Today Selected") Case "Details" MessageBox.Show("Details Selected") End Select End SubAny idea how to make the tab show as currently there is no difference as I select the document the event fires, but nothing changes on the tooltabs