Is there a way to disable a Form (Enabled = false) without disabling the MdiTab?
Maybe I should add some more information.
My Windows Form is a part of the MdiTab. When I set the enabled property of the Form to false (disabling the form), the MdiTab als gets disabled. If I click on another tab, I can't click back to the disabled MdiTab.
Why would I want to disable the Form? Well, I'm working on a sort of modality for floating Forms that are related to the Form in the MdiTab. At a certain point, a Floating Form should be modal (not application wide, but 'MdiTab' wide). So I need to be able to disable the Form but not the Tab... Also, you shouldn't be able to close the Tab at that point, but a user should be able to navigate to another tab and back.
Hi,
Thank you for your clarifications. I can see this possible only if you hook to the "TabSelecting" event of the "UltraTabbedMdiManager" component and go through each and every tab and enable their forms. Would this help?