Hey ich hab ein kleines problem und zwas geht es darum das ich ein kleines Programm amchen möchte in dem man Sein PW und sein Acc angeben kann...
PS: das is kein hack ich vergess nur oft passwörter!
Spoiler anzeigen
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <GUIListBox.au3>
#include <WindowsConstants.au3>
$sIniSection = IniReadSectionNames( "Data.txt")
[/autoit] [autoit][/autoit] [autoit]#Region ### START Koda GUI section ### Form=
$Form2 = GUICreate("Choices Dialog", 345, 254, 302, 218)
GUISetIcon("D:\007.ico")
$ListBox1 = GUICtrlCreateList("", 8, 8, 137, 201)
GUICtrlSetData(-1, "")
$Button2 = GUICtrlCreateButton("+", 156, 72, 31, 25)
$Button3 = GUICtrlCreateButton("-", 157, 105, 31, 25, $WS_GROUP)
GUICtrlSetState(-1, $GUI_DISABLE)
$ListBox2 = GUICtrlCreateList("", 200, 8, 137, 201)
GUICtrlSetData(-1 , "")
$Button5 = GUICtrlCreateButton("&OK", 104, 225, 75, 25, $WS_GROUP)
$Button6 = GUICtrlCreateButton("&Cancel", 184, 225, 75, 25, $WS_GROUP)
$Button7 = GUICtrlCreateButton("&Help", 264, 225, 75, 25, $WS_GROUP)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button2
$sName = InputBox( "Add File", "Geben sie jetzt den Acc namen an!")
$sPasswort = InputBox( "Add File", "Geben sie jetzt das Passwort an!")
_GUICtrlListBox_AddString($ListBox1, $sName)
_GUICtrlListBox_AddString($ListBox2, $sPasswort)
IniWriteSection( "Data.txt", $sName, $sPasswort)
Case $Button5
Exit
Case $Button6
Exit
EndSwitch
WEnd
Und zwas soll der am Anfangen immer alle Namen auslesen und in die linke Listbox schreiben und die PAsswörter in die Rechte!
Dann soll man mit + eine neun Eintrag falls man einen neuen acc hat..
und mit - soll man sie löschen können..
MFG CF gaming