How can I use this simple script:
_Main() Func _Main() GUICreate("Standard use of a ProgressBar()", 240, 50, -1, -1) Local $Progress = GUICtrlCreateProgress(10, 10, 220, 20) GUISetState(@SW_SHOW) For $A = 1 To 100 GUICtrlSetData($Progress, $A) Sleep(50) If GUIGetMsg() = -3 Then ExitLoop Next While 1 Switch GUIGetMsg() Case -3 Exit EndSwitch WEnd EndFunc ;==>_Main
in a way that closes it self when the bar reach 100% ?
also is there a way to set it to advance let's say based on how many applications were installed or how many files were copied etc?