Hallo
ich suche hilfe, ich hab wenig ahnung und hätte für dieses design gerne, dass:
wenn man "OK" drückt der ladebalken angeht, und würde gerne wissen wie man mit koda ein bild einfügt
hier ist das design:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <ProgressConstants.au3>
#include <WindowsConstants.au3>
$Form1 = GUICreate("test", 737, 490, 546, 312)
$MenuItem1 = GUICtrlCreateMenu("&Datei")
GUISetBkColor(0xC0C0C0)
$Abbrechen = GUICtrlCreateButton("Abbrechen", 472, 409, 155, 31, $WS_GROUP)
$Ladebalken = GUICtrlCreateProgress(152, 328, 438, 33, $PBS_SMOOTH)
GUICtrlSetColor(-1, 0x008000)
$OK = GUICtrlCreateButton("Ok", 128, 408, 155, 31, $WS_GROUP)
$Benutzername = GUICtrlCreateInput("Benutzername", 144, 216, 177, 21)
$Input1 = GUICtrlCreateInput("Passwort", 440, 216, 177, 21)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd