How do I get the document tab to re display once you hit the close button for that tab.
As this code does not seem to do anything.
I can prevent the page from hiding buy changing the setting to
But that is not the required action
Also you can easily hide the tab by coding
but how do you get it to show up again
Me.dwSearchVehicles.AllowedDockState = AllowedDockState.Docked Or AllowedDockState.Hidden Private Sub mnuSearchVehicles_Click(sender As System.Object, e As System.EventArgs) Handles mnuSearchVehicles.Click If dwSearchVehicles.DockState.Equals(DockState.Hidden) Then dwSearchVehicles.DockState = DockState.TabbedDocument End If Me.radDockMain.ActiveWindow = dwSearchVehicles End SubAs this code does not seem to do anything.
I can prevent the page from hiding buy changing the setting to
Me.dwSearchVehicles.AllowedDockState = AllowedDockState.Docked
But that is not the required action
Also you can easily hide the tab by coding
Me.dwSearchVehicles.AllowedDockState = AllowedDockState.Docked Or AllowedDockState.Hidden Me.dwSearchVehicles.Hide()but how do you get it to show up again