Hallo kann mir bitte jemand sagen wie man beim ladebalken die geschwindigkeit ändert? Also hier mein script
PHP Code:
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 625, 443, 193, 125)
$Progress1 = GUICtrlCreateProgress(368, 56, 89, 17)
$Button1 = GUICtrlCreateButton("OK", 152, 160, 249, 65, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
GUICtrlSetData($Progress1, 100)
EndSwitch
WEnd