_ProgressBarCreate

Creates a sizable horizontal or vertical progress bar (which must be destroyed by _ProgressBarDestroy)

#include "Dialogue.au3"
_ProgressBarCreate( [ $sTitle = _DialogueTitle() [, $sLabel = "" [, $bPercentageLabel = True [, $bOrientation = True [, $iTop = -1 [, $iLeft = -1 [, $iWidthHeight = 300 ]]]]]]] )

parameters

$sTitle Title of dialogue, if empty title set by _DialogueTitle() is used
$sLabel Label under progress bar
$bPercentageLabel True = Show percentage label, False = Not
$bOrientation True = Horizontal, False = Vertical
$iTop Top coordinate of progess bar, -1 = center
$iLeft Left coordinate, -1 = center
iWidthHeight Progress bar window width or height

return value

boolean value True = Progress bar created, False = Progress bar already active

related

_ProgressBarType, _ProgressBarActive, _ProgressBarAdd, _ProgressBarSet, _ProgressBarGet, _ProgressBarFull, _ProgressBarEmpty, _ProgressBarDestroy

example

_ProgressBarType( 1, 0xff0000 ) ; red bar
_ProgressBarCreate("Progress bar","Please wait ...")

See library example how to implement a progress bar.