This is an UDF for SysTab32 Control...
Syntax:
_ControlTab ( $hWnd, $sText, $sCommand [, $sParam1 [, $sParam2 [, $sParam3]]] )
Example:
#include <GUIConstants.au3> #include <_ControlTab.au3> $GUI = GUICreate("ControlTab Demo") GUICtrlCreateTab(0, 20) $Tab_1 = GUICtrlCreateTabItem("Tab 1") GUICtrlCreateLabel("Some Text", 10, 60) $Tab_2 = GUICtrlCreateTabItem("Tab 2") $Tab_3 = GUICtrlCreateTabItem("More Tab") GUISetState() For $i = 0 To _ControlTab($GUI, "", "GetTabsCount")-1 MsgBox(0, "", "Zero-Based tab number [" & $i & "]: " & @LF & _ControlTab($GUI, "", "GetItemText", $i), 2) _ControlTab($GUI, "", "TabRight", 1) Next ;Switch back to the first tab _ControlTab($GUI, "", "TabSelect", 0) MsgBox(0, "", "Zero-Based tab number [0]: " & @LF & _ControlTab($GUI, "", "GetItemText", 0))
The UDF:
_ControlTab.au3 6.58K
369 downloads







