Show/Hide the StatusBar control
#include <GuiStatusBar.au3>
_GUICtrlStatusBar_ShowHide ( $hWnd, $iState )
$hWnd | Handle to the control |
$iState | State of the StatusBar, can be the following values: @SW_SHOW @SW_HIDE |
True: | the control was previously visible. |
False: | the control was previously hidden. |
#include <GUIConstantsEx.au3>
#include <GuiStatusBar.au3>
#include <MsgBoxConstants.au3>
Example()
Func Example()
Local $hGUI, $hStatus
Local $aParts[3] = [75, 150, -1]
; Create GUI
$hGUI = GUICreate("StatusBar Show/Hide", 400, 300)
; defaults to 1 part, no text
$hStatus = _GUICtrlStatusBar_Create($hGUI)
_GUICtrlStatusBar_SetParts($hStatus, $aParts)
GUISetState(@SW_SHOW)
; Set parts
_GUICtrlStatusBar_SetParts($hStatus, $aParts)
_GUICtrlStatusBar_SetText($hStatus, "Part 1")
_GUICtrlStatusBar_SetText($hStatus, "Part 2", 1)
_GUICtrlStatusBar_SetText($hStatus, "Part 3", 2)
_GUICtrlStatusBar_ShowHide($hStatus, @SW_HIDE)
MsgBox($MB_SYSTEMMODAL, "Information", "Hide StatusBar")
Sleep(1000)
_GUICtrlStatusBar_ShowHide($hStatus, @SW_SHOW)
MsgBox($MB_SYSTEMMODAL, "Information", "Show StatusBar")
Sleep(1000)
; Loop until the user exits.
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
GUIDelete()
EndFunc ;==>Example