Définit la longueur du ruban
#include <GuiReBar.au3>
_GUICtrlRebar_SetBandLength ( $hWnd, $iIndex, $iLength )
$hWnd | Handle du contrôle Rebar |
$iIndex | Index, de base 0, du ruban |
$iLength | Longueur du ruban, en pixels |
Succès: | Retourne True. |
Échec: | Retourne False. |
#include <GuiComboBox.au3> #include <GUIConstantsEx.au3> #include <GuiEdit.au3> #include <GuiReBar.au3> #include <GuiToolbar.au3> #include <MsgBoxConstants.au3> #include <WinAPIConstants.au3> #include <WindowsConstants.au3> Global $g_idMemo Example() Func Example() Local $hGui, $idBtnExit, $hReBar, $hToolbar, $hCombo, $idInput, $msg Local Enum $e_idNew = 1000, $e_idOpen, $e_idSave, $e_idHelp, $msg $hGui = GUICreate("Rebar", 400, 396, -1, -1, BitOR($WS_MINIMIZEBOX, $WS_CAPTION, $WS_POPUP, $WS_SYSMENU, $WS_MAXIMIZEBOX)) ; Crée un contrôle rebar ; $hReBar = _GUICtrlRebar_Create($hGui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_AUTOSIZE, $RBS_BANDBORDERS)) $hReBar = _GUICtrlRebar_Create($hGui, BitOR($CCS_TOP, $WS_BORDER, $RBS_VARHEIGHT, $RBS_BANDBORDERS)) $g_idMemo = GUICtrlCreateEdit("", 2, 100, 396, 250, $WS_VSCROLL) GUICtrlSetFont($g_idMemo, 10, 400, 0, "Courier New") ; Crée un combobox pour le placer dans le rebar $hCombo = _GUICtrlComboBox_Create($hGui, "", 0, 0, 90, 120) _GUICtrlComboBox_BeginUpdate($hCombo) _GUICtrlComboBox_AddDir($hCombo, @WindowsDir & "\*.exe") _GUICtrlComboBox_EndUpdate($hCombo) ; Crée un toolbar pour le placer dans le rebar $hToolbar = _GUICtrlToolbar_Create($hGui, BitOR($TBSTYLE_FLAT, $CCS_NORESIZE, $CCS_NOPARENTALIGN)) ; Ajoute des bitmaps système standards Switch _GUICtrlToolbar_GetBitmapFlags($hToolbar) Case 0 _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_SMALL_COLOR) Case 2 _GUICtrlToolbar_AddBitmap($hToolbar, 1, -1, $IDB_STD_LARGE_COLOR) EndSwitch ; Ajoute des boutons _GUICtrlToolbar_AddButton($hToolbar, $e_idNew, $STD_FILENEW) _GUICtrlToolbar_AddButton($hToolbar, $e_idOpen, $STD_FILEOPEN) _GUICtrlToolbar_AddButton($hToolbar, $e_idSave, $STD_FILESAVE) _GUICtrlToolbar_AddButtonSep($hToolbar) _GUICtrlToolbar_AddButton($hToolbar, $e_idHelp, $STD_HELP) ; Crée un inputbox pour le placer dans le rebar $idInput = GUICtrlCreateInput("Input control", 0, 0, 90, 20) ; Ajoute un ruban contenant le contrôle au début du rebar _GUICtrlRebar_AddToolBarBand($hReBar, $hToolbar) ; Ajoute un ruban contenant le contrôle _GUICtrlRebar_AddBand($hReBar, $hCombo, 100, 120, "Dir *.exe:") ; Ajoute un ruban contenant le contrôle _GUICtrlRebar_AddBand($hReBar, GUICtrlGetHandle($idInput), 100, 100, "Name:") _GUICtrlRebar_SetBandBackColor($hReBar, 1, Int(0x00008B)) _GUICtrlRebar_SetBandForeColor($hReBar, 1, Int(0xFFFFFF)) GUISetState(@SW_SHOW) For $x = 0 To _GUICtrlRebar_GetBandCount($hReBar) - 1 MemoWrite("Band Index " & $x & @TAB & "Length: " & _GUICtrlRebar_GetBandLength($hReBar, $x)) Next MemoWrite("============================================") MsgBox($MB_SYSTEMMODAL, "Information", "Setting Band Width") _GUICtrlRebar_SetBandLength($hReBar, 0, 200) For $x = 0 To _GUICtrlRebar_GetBandCount($hReBar) - 1 MemoWrite("Band Index " & $x & @TAB & "Length: " & _GUICtrlRebar_GetBandLength($hReBar, $x)) Next $idBtnExit = GUICtrlCreateButton("Exit", 150, 360, 100, 25) GUICtrlSetState($idBtnExit, $GUI_DEFBUTTON) GUICtrlSetState($idBtnExit, $GUI_FOCUS) Do $msg = GUIGetMsg() Until $msg = $GUI_EVENT_CLOSE Or $msg = $idBtnExit EndFunc ;==>Example ; Ecrit un message dans le contrôle memo Func MemoWrite($sMessage = "") _GUICtrlEdit_AppendText($g_idMemo, $sMessage & @CRLF) EndFunc ;==>MemoWrite