ForsakenGod 0 Posted April 11, 2010 Hello , I would like to ask if its possible to create a tab inside a tab . Thanks for any response. This is what i ve tryed but ... welll couldnt agieve that what i wanted #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <TabConstants.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= Global $Form1 = GUICreate("Form1", 403, 318, 192, 124) Global $Tab1 = GUICtrlCreateTab(48, 72, 289, 193) GUICtrlSetResizing($Tab1, $GUI_DOCKWIDTH+$GUI_DOCKHEIGHT) Global $TabSheet1 = GUICtrlCreateTabItem("TabSheet1") Global $Tabi1 = GUICtrlCreateTab(48, 72, 289, 193) Global $TabSheeti1 = GUICtrlCreateTabItem("TabSheet1") GUICtrlCreateTabItem("") Global $Button1 = GUICtrlCreateButton("Button1", 152, 176, 75, 25) Global $TabSheet2 = GUICtrlCreateTabItem("TabSheet2") GUICtrlCreateTabItem("") GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Share this post Link to post Share on other sites
Valuater 130 Posted April 11, 2010 This might help http://www.autoitscript.com/forum/index.php?showtopic=63489&view=findpost&p=473645 8) Share this post Link to post Share on other sites