Jump to content

Tab Focus


lavezzi
 Share

Recommended Posts

straight from help...

#AutoIt3Wrapper_au3check_parameters=-d -w 1 -w 2 -w 3 -w 4  -w 5 -w 6
#include <GuiConstantsEx.au3>
#include <GuiTab.au3>

Opt('MustDeclareVars', 1)

$Debug_TAB  = False ; Check ClassName  being passed to functions, set to True and use a handle to another control to  see it work

_Main()

Func  _Main()
    Local $hTab

    ; Create  GUI
    GUICreate("Tab Control Get Current Selected", 400, 300)
    $hTab = GUICtrlCreateTab(2, 2, 396, 296)
    GUISetState()

     ; Add tabs
    _GUICtrlTab_InsertItem($hTab, 0, "Tab 1")
     _GUICtrlTab_InsertItem($hTab, 1, "Tab 2")
     _GUICtrlTab_InsertItem($hTab, 2, "Tab 3")
     
    ; Get/Set current  selection
    _GUICtrlTab_SetCurSel($hTab, 1)
    MsgBox(4160, "Information", "Current Selection:  " &  _GUICtrlTab_GetCurSel($hTab))

     ; Loop until user exits
     Do
    Until GUIGetMsg() =  $GUI_EVENT_CLOSE
    GUIDelete()
EndFunc   ;==>_Main

8)

NEWHeader1.png

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...