| c# Programming Glossary: tcm_adjustrectControlling user workflow in Winforms http://stackoverflow.com/questions/2064196/controlling-user-workflow-in-winforms  void WndProc ref Message m Hide tabs by trapping the TCM_ADJUSTRECT message if m.Msg 0x1328 DesignMode m.Result IntPtr 1 else base.WndProc.. 
 Creating Wizards for Windows Forms in C# [closed] http://stackoverflow.com/questions/2340566/creating-wizards-for-windows-forms-in-c-sharp  void WndProc ref Message m Hide tabs by trapping the TCM_ADJUSTRECT message if m.Msg 0x1328 DesignMode m.Result IntPtr 1 else base.WndProc.. 
 Hide TabControl buttons to manage stacked Panel controls http://stackoverflow.com/questions/2798215/hide-tabcontrol-buttons-to-manage-stacked-panel-controls  a wee bit of Win32 API magic. The tab control sends the TCM_ADJUSTRECT message to allow the app to adjust the tab size. Add a new class.. void WndProc ref Message m Hide tabs by trapping the TCM_ADJUSTRECT message if m.Msg 0x1328 DesignMode m.Result IntPtr 1 else base.WndProc.. 
 How do I create a TabControl with no tab headers? http://stackoverflow.com/questions/4912354/how-do-i-create-a-tabcontrol-with-no-tab-headers  simple once you know the trick. The tab control is sent a TCM_ADJUSTRECT message when it needs to adjust the tab size so we just need.. class CustomTabControl TabControl private const int TCM_ADJUSTRECT 0x1328 protected override void WndProc ref Message m  Hide the.. ref Message m  Hide the tab headers at run time if m.Msg TCM_ADJUSTRECT DesignMode  m.Result IntPtr 1 return  call the base class implementation.. 
 |