Sets information about a tab
#include <GuiTab.au3>
_GUICtrlTab_SetItem ( $hWnd, $iIndex [, $sText = -1 [, $iState = -1 [, $iImage = -1 [, $iParam = -1]]]] )
$hWnd | Control ID/Handle to the control |
$iIndex | 0-based item index |
$sText | [optional] Item text |
$iState | [optional] Item state |
$iImage | [optional] 0-based item image |
$iParam | [optional] Application defined data |
Success: | True. |
Failure: | False. |
#include <GUIConstantsEx.au3>
#include <GuiTab.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
Local $aItem, $idTab
; Create GUI
GUICreate("Tab Control Set Item", 400, 300)
$idTab = GUICtrlCreateTab(2, 2, 396, 296)
GUISetState(@SW_SHOW)
; Add tabs
_GUICtrlTab_InsertItem($idTab, 0, "Tab 1")
_GUICtrlTab_InsertItem($idTab, 1, "Tab 2")
_GUICtrlTab_InsertItem($idTab, 2, "Tab 3")
; Get/Set tab 1 parameter
_GUICtrlTab_SetItem($idTab, 0, -1, -1, -1, 1234)
$aItem = _GUICtrlTab_GetItem($idTab, 0)
MsgBox($MB_SYSTEMMODAL, "Information", "Tab 1 parameter: " & $aItem[3])
; Loop until the user exits.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example