Hey!
Benötige Hilfe, ich arbeite an einem Login system mit Passwort und Name.
Jedoch weiß ich nicht wie ich es machen soll bei mir kommen nur Fehler...
Code
Gui, Add, Text, x32 y69 w100 h20 +BackgroundTrans, Accountname
Gui, Add, Text, x32 y109 w100 h20 +BackgroundTrans, Passwort
Gui, Add, Edit, x142 y69 w310 h20 gName, Name
Gui, Add, Edit, x142 y109 w310 h20 +Password gPasswort, Passwort
Gui, Add, Button, x142 y169 w160 h30 gYes, Anmelden
Gui, Add, Button, x312 y169 w150 h30 , Abbrechen
Gui, Show, x620 y542 h283 w474, Soon-Binder
return
Code
Name:
done := imp_read("Tabelle", gName, "Name")
If(done == gName)
{
MsgBox, %done% ist Korrekt
}
else
{
MsgBox, %done% ist nicht Korrekt
}
return
Passwort:
Passwort := imp_read("Tabelle", Passwort, "Passwort")
If(Passwort == Passwort)
{
MsgBox, %Passwort% Richtig!
}
else
{
Msgbox, %Passwort% Falsch!
}
return
Yes:
msgbox, Ok!
Return
Alles anzeigen
Hoffe ihr könnt mir helfen..