Returns the index of the item that has the focus in a tab control
#include <GuiTab.au3>
_GUICtrlTab_GetCurFocus ( $hWnd )
$hWnd | Control ID/Handle to the control |
Success: | the 0-based index of the tab item that has the focus. |
Failure: | -1. |
The item that has the focus may be different than the selected item.
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
; Create GUI
GUICreate("Tab Get/Set Current Focus (v" & @AutoItVersion & ")", 400, 300)
Local $idTab = GUICtrlCreateTab(2, 2, 396, 296)
GUISetState(@SW_SHOW)
; Add tabs
_GUICtrlTab_InsertItem($idTab, 0, "Tab 0")
_GUICtrlTab_InsertItem($idTab, 1, "Tab 1")
_GUICtrlTab_InsertItem($idTab, 2, "Tab 2")
; Get/Set current focus
_GUICtrlTab_SetCurFocus($idTab, 1)
MsgBox($MB_SYSTEMMODAL, "Information", "Current Focus: " & _GUICtrlTab_GetCurFocus($idTab))
; Loop until the user exits.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example