I filed a new bug regarding the standard Windows Forms TabControl which is something I ran into with .NET 1.1 and somehow still hasn't been fixed. My other TabControl-related suggestion is now officially resolved. What's funny is that the resolution is...
In .NET 1.x, disabling a TabControl's TabPage is awkward at best: setting its Enabled-property to false doesn't disable it, instead it disables all controls on it. The MSDN solution is even worse: use the SelectedIndexChanged-event to check whether the...