Halli hallo Leute,
Wollte mir einen Passwort Generator schreiben, doch leider ewig nichts mehr mit AutoIt gemacht und kann es daher nicht umsetzen.
Hoffe ihr könnt mir helfen.
Die GUI sollte folgendermaßen aussehen ( denke mal, dass erklärt auch die Funktionsweiße
C
- #include <ButtonConstants.au3>
- #include <EditConstants.au3>
- #include <GUIConstantsEx.au3>
- #include <StaticConstants.au3>
- #include <WindowsConstants.au3>
- #Region ### START Koda GUI section ### Form=
- $Form1 = GUICreate("Random Passwordgenerator", 294, 104, 192, 124)
- GUICtrlCreateInput("", 88, 56, 193, 21)
- $Label1 = GUICtrlCreateLabel("Passwort : ", 24, 56, 56, 17)
- $Checkbox1 = GUICtrlCreateCheckbox("Passwort darf Zahlen enthalten", 88, 32, 169, 25)
- GUICtrlCreateInput("", 88, 8, 81, 21)
- $Label2 = GUICtrlCreateLabel("Zeichenanzahl :", 8, 8, 80, 17)
- GUISetState(@SW_SHOW)
- #EndRegion ### END Koda GUI section ###
- While 1
- $nMsg = GUIGetMsg()
- Switch $nMsg
- Case $GUI_EVENT_CLOSE
- Exit
- EndSwitch
- WEnd