Fügt einen neuen Tab ein
#include <GuiTab.au3>
_GUICtrlTab_InsertItem ( $hWnd, $iIndex, $sText [, $iImage = -1 [, $iParam = 0]] )
$hWnd | Control-ID / Handle des Controls |
$iIndex | Index des neuen Tabs |
$sText | Tabtext |
$iImage | [optional] 0-basierender Index des Tabbildes |
$iParam | [optional] Anwendungsspezifische Daten |
Erfolg: | Der 0-basierende Index des neuen Tabs |
Fehler: | -1 |
- - - - - - - - Erklärung der Controls - - - - - - - -
#include <GuiConstantsEx.au3>
#include <GuiTab.au3>
Example()
Func Example()
; Erstellt eine GUI
GUICreate("Tab-Control Item einfügen (v" & @AutoItVersion & ")", 400, 300)
Local $idTab = GUICtrlCreateTab(2, 2, 396, 296)
GUISetState(@SW_SHOW)
; Fügt Tabs hinzu
_GUICtrlTab_InsertItem($idTab, 0, "Tab 1")
_GUICtrlTab_InsertItem($idTab, 1, "Tab 2")
_GUICtrlTab_InsertItem($idTab, 2, "Tab 3")
; Die Schleife wiederholt sich, bis der Benutzer die Beenden-Aktion der GUI auslöst.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example