Jump to content

Posible to create tab inside a tab ?


Recommended Posts

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
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...