Frage zu _IE

  • Hallo habe mal ne gui erstellt in der ich meine email adresse und passwort für https://autoit.de/www.schueler.cc eingeben muss.

    wenn ich nun login klicke soll überprüft werden ob das passwort richtig ist, wenn nicht kommt eine msgbox.
    ich verstehe das noch garnicht mit diesen _IE zeugs^^

    hoffe es kann mir einer helfen

  • schau dir mal _GUICtrlEdit mü+ste damit gehen

    Spoiler anzeigen
    [autoit]


    Funktionsreferenz
    _GUICtrlEdit_GetText
    --------------------------------------------------------------------------------

    [/autoit] [autoit][/autoit] [autoit]

    Liest den Text eines Edit-Steuerelementes aus

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    #Include <GuiEdit.au3>
    _GUICtrlEdit_GetText($hWnd)

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    Parameter

    [/autoit] [autoit][/autoit] [autoit]

    $hWnd Handle des Steuerelements

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    Rückgabewert

    [/autoit] [autoit][/autoit] [autoit]

    Erfolg: der Text als String vom Edit-Steuerelement
    Fehler: Leerer String

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    Bemerkungen

    [/autoit] [autoit][/autoit] [autoit]

    Nichts.

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    Verwandte Funktionen

    [/autoit] [autoit][/autoit] [autoit]

    _GUICtrlEdit_SetText, _GUICtrlEdit_AppendText

    [/autoit] [autoit][/autoit] [autoit]

    Beispiel

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    #include <GuiEdit.au3>

    [/autoit] [autoit][/autoit] [autoit]

    Opt('MustDeclareVars', 1)

    [/autoit] [autoit][/autoit] [autoit]

    $Debug_Ed = False ; Check ClassName being passed to Edit functions, set to True and use a handle to another control to see it work

    [/autoit] [autoit][/autoit] [autoit]

    _Example_Internal()
    _Example_External()

    [/autoit] [autoit][/autoit] [autoit]

    Func _Example_Internal()
    Local $hGUI, $hEdit

    [/autoit] [autoit][/autoit] [autoit]

    ; Create GUI
    $hGUI = GUICreate("(Internal) Edit Get Text", 400, 300)
    $hEdit = GUICtrlCreateEdit("", 2, 2, 394, 268)
    GUISetState()

    [/autoit] [autoit][/autoit] [autoit]

    ; Set Text
    _GUICtrlEdit_SetText ($hEdit, "This is a test" & @CRLF & "Another Line" & @CRLF & "Append to the end?")

    [/autoit] [autoit][/autoit] [autoit]

    ; Get Text
    MsgBox(4160, "Information", _GUICtrlEdit_GetText ($hEdit))

    ; Loop until user exits
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
    EndFunc ;==>_Example_Internal

    [/autoit] [autoit][/autoit] [autoit]

    Func _Example_External()
    Local $hGUI, $hEdit

    [/autoit] [autoit][/autoit] [autoit]

    ; Create GUI
    $hGUI = GUICreate("(External) Edit Get Text", 400, 300)
    $hEdit = _GUICtrlEdit_Create ($hGUI, "", 2, 2, 394, 268)
    GUISetState()

    [/autoit] [autoit][/autoit] [autoit]

    ; Set Text
    _GUICtrlEdit_SetText ($hEdit, "This is a test" & @CRLF & "Another Line" & @CRLF & "Append to the end?")

    [/autoit] [autoit][/autoit] [autoit]

    ; Get Text
    MsgBox(4160, "Information", _GUICtrlEdit_GetText ($hEdit))

    [/autoit] [autoit][/autoit] [autoit]

    ; Loop until user exits
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
    GUIDelete()
    EndFunc ;==>_Example_External

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit]


  • Hallo,

    Zitat

    Hallo habe mal ne gui erstellt

    Sehr schön! Wenn du das Script dieser Gui postest, dann lassen sich die Probleme/Fehler/Anmerkungen/Vorschläge wesentlich einfacher feststellen...
    ciao
    Andy

  • Spoiler anzeigen

    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <GuiStatusBar.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #Region ### START Koda GUI section ### Form=d:\marcel\sonstiges\skripte\autoit\forms\schueler.kxf
    $Form1_1 = GUICreate("Schüler.CC", 205, 410, 325, 202)
    GUISetBkColor(0xFFFFFF)
    $Pic1 = GUICtrlCreatePic("C:\Users\Marcel\Desktop\logo.bmp", 16, 8, 169, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
    $Group1 = GUICtrlCreateGroup("Login", 9, 99, 177, 241)
    $Label1 = GUICtrlCreateLabel("E-Mail:", 16, 120, 36, 17)
    $Label2 = GUICtrlCreateLabel("Passwort:", 16, 160, 50, 17)
    GUICtrlCreateInput("", 16, 136, 161, 21)
    GUICtrlCreateInput("", 16, 176, 161, 21)
    $Checkbox1 = GUICtrlCreateCheckbox("eingeloggt bleiben", 24, 200, 105, 17)
    $Button1 = GUICtrlCreateButton("Login", 16, 224, 49, 21, $WS_GROUP)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $StatusBar1 = _GUICtrlStatusBar_Create($Form1_1)
    _GUICtrlStatusBar_SetMinHeight($StatusBar1, 17)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Exit

    EndSwitch
    WEnd

    ja hier ist die gui aber ich glaube die hilft nicht viel weiter xD

    und ein script habe ich bis jetzt noch nicht, da ich mich mit den _IE sachen nicht auskenne und es gerne jetzt zeit für zeit lernen möchte

  • bite schon must du nur anpassen, das login muste noch sellber machen

    Spoiler anzeigen
    [autoit]


    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <GuiStatusBar.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <GuiEdit.au3>
    #Region ### START Koda GUI section ### Form=d:\marcel\sonstiges\skripte\autoit\forms\schueler.kxf
    $Form1_1 = GUICreate("Schüler.CC", 205, 410, 325, 202)
    GUISetBkColor(0xFFFFFF)
    $Pic1 = GUICtrlCreatePic("C:\Users\Marcel\Desktop\logo.bmp", 16, 8, 169, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
    $Group1 = GUICtrlCreateGroup("Login", 9, 99, 177, 241)
    $Label1 = GUICtrlCreateLabel("E-Mail:", 16, 120, 36, 17)
    $Label2 = GUICtrlCreateLabel("Passwort:", 16, 160, 50, 17)
    GUICtrlCreateInput("", 16, 136, 161, 21)
    GUICtrlCreateInput("", 16, 176, 161, 21)
    $Checkbox1 = GUICtrlCreateCheckbox("eingeloggt bleiben", 24, 200, 105, 17)
    $Button1 = GUICtrlCreateButton("Login", 16, 224, 49, 21, $WS_GROUP)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $StatusBar1 = _GUICtrlStatusBar_Create($Form1_1)
    _GUICtrlStatusBar_SetMinHeight($StatusBar1, 17)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    [/autoit] [autoit][/autoit] [autoit]

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Case $Button1
    daten()


    Exit
    EndSwitch
    WEnd
    Exit
    Func daten()
    $handle = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:1]" );hole daten feld1
    ;MsgBox(64, "Information",$handle );test feld1
    $handle1 = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:2]" );hole daten feld2
    ;MsgBox(64, "Information",$handle1 );test feld2
    if $handle="a" And $handle1="b" Then;hier für a deine emailadresse und für b dein password
    MsgBox(64, "Information","klappt" )
    Else
    MsgBox(64, "Information","klappt nicht" )
    EndIf
    EndFunc

    [/autoit] [autoit][/autoit] [autoit][/autoit]

    :rofl:

  • und wie soll ich das anpassen ich möchte nochmal sagen dass ich davon keinen blassen schimmer habe und es nett wäre wenn es dazu noch jemand erklären könnte das ich davon lernen kann

  • Hi,
    sag blos du willst von uns wissen wie man Mailadressen und Passwörter von Webseiten ausliest^^
    Ich denk mal das war ein Witz :D
    Wenn du das Script dazu benutzen willst, um dich dort einzuloggen, dann ist das etwas anderes, oder soll das etwa ein automatischer "Login-Tester" werden?
    Mail und Passwort eingeben, und das Script gibt zurück, ob das Login geklappt hat?
    Bin konfus...
    ciao
    Andy

  • man soll halt email und pass von seinem account eingeben und er testet ob das passwort richtig ist
    eigentlich wollte ich das so erweitern dass ich die seite neu in meiner gui aufbaue aber das wird ja etwas schwierig drum wollte ich ja lernen

    Einmal editiert, zuletzt von Reaker (24. August 2009 um 11:22)

  • höre auf zu jammern, hier habe die checkbox aus deiner guiendfernt, du brauchst nurfür a deine emailadresse und für b dein password
    in zeile 40 ändern :rock:

    Spoiler anzeigen
    [autoit]


    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <GuiEdit.au3>
    #include <IE.au3>
    Opt("MouseCoordMode",0)
    #Region ### START Koda GUI section ### Form=d:\marcel\sonstiges\skripte\autoit\forms\schueler.kxf
    $Form1_1 = GUICreate("Schüler.CC", 205, 410, 325, 202)
    GUISetBkColor(0xFFFFFF)
    $Pic1 = GUICtrlCreatePic("C:\Users\Marcel\Desktop\logo.bmp", 16, 8, 169, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
    $Group1 = GUICtrlCreateGroup("Login", 9, 99, 177, 241)
    $Label1 = GUICtrlCreateLabel("E-Mail:", 16, 120, 36, 17)
    $Label2 = GUICtrlCreateLabel("Passwort:", 16, 160, 50, 17)
    GUICtrlCreateInput("", 16, 136, 161, 21)
    GUICtrlCreateInput("", 16, 176, 161, 21)
    ;$Checkbox1 = GUICtrlCreateCheckbox("eingeloggt bleiben", 24, 200, 105, 17)
    $Button1 = GUICtrlCreateButton("Login", 16, 224, 49, 21, $WS_GROUP)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $StatusBar1 = _GUICtrlStatusBar_Create($Form1_1)
    _GUICtrlStatusBar_SetMinHeight($StatusBar1, 17)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    [/autoit] [autoit][/autoit] [autoit]

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Case $Button1
    daten()


    Exit
    EndSwitch
    WEnd
    Exit
    Func daten()
    $handle = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:1]" );hole daten feld1
    ;MsgBox(64, "Information",$handle );test feld1
    $handle1 = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:2]" );hole daten feld2
    ;MsgBox(64, "Information",$handle1 );test feld2
    if $handle="a" And $handle1="b" Then;hier für a deine emailadresse und für b dein password
    MsgBox(64, "Information","klappt" )
    Else
    MsgBox(64, "Information","klappt nicht" )
    EndIf
    $sUsername = $handle
    $sPassword = $handle1
    $sUrl = "http://www.schueler.cc/"
    $oIE = _IECreate ($sUrl)
    $oHWND = _IEPropertyGet($oIE, "hwnd")
    WinSetState ($oHWND, "", @SW_MAXIMIZE )
    $oForm = _IEFormGetCollection ($oIE, 2)
    $oUsername = _IEFormElementGetObjByName ($oForm, "email")
    $oPassword = _IEFormElementGetObjByName ($oForm, "passwort")
    _IEFormElementSetValue ($oUsername, $sUsername)
    _IEFormElementSetValue ($oPassword, $sPassword)

    [/autoit] [autoit][/autoit] [autoit]

    $oSubmit = _IEGetObjByName ($oIE, "button_login_login")
    _IEAction ($oSubmit, "click")

    [/autoit] [autoit][/autoit] [autoit]

    Exit
    EndFunc

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit]


    Einmal editiert, zuletzt von rewejo (24. August 2009 um 13:55)

  • jetz habe ich das verstanden wie du das gemacht hast, aber es sollte eigentlich mit jedem konto gehen, und nicht nur mit meinem

  • so habe deinegui nochmal umgebaut du kannst jetz für ein benutzer die daten eintragen :rofl: ,

    Spoiler anzeigen
    [autoit][/autoit] [autoit][/autoit] [autoit]

    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <GuiStatusBar.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <GuiEdit.au3>
    #include <IE.au3>
    #include <File.au3>
    Opt("MouseCoordMode",0)
    #Region ### START Koda GUI section ### Form=d:\marcel\sonstiges\skripte\autoit\forms\schueler.kxf
    $Form1_1 = GUICreate("Schüler.CC", 205, 410, 325, 202)
    GUISetBkColor(0xFFFFFF)
    $Pic1 = GUICtrlCreatePic("C:\Users\Marcel\Desktop\logo.bmp", 16, 8, 169, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
    $Group1 = GUICtrlCreateGroup("Login", 9, 99, 177, 241)
    $Label1 = GUICtrlCreateLabel("E-Mail:", 16, 120, 36, 17)
    $Label2 = GUICtrlCreateLabel("Passwort:", 16, 160, 50, 17)
    GUICtrlCreateInput("", 16, 136, 161, 21)
    GUICtrlCreateInput("", 16, 176, 161, 21)
    ;$Checkbox1 = GUICtrlCreateCheckbox("eingeloggt bleiben", 24, 200, 105, 17)
    $Button1 = GUICtrlCreateButton("Login", 16, 224, 49, 21, $WS_GROUP)
    $Button2 = GUICtrlCreateButton("benutzer anlegen", 76, 224, 90, 21, $WS_GROUP)
    $Button3 = GUICtrlCreateButton("exit", 16, 350, 90, 21, $WS_GROUP)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $StatusBar1 = _GUICtrlStatusBar_Create($Form1_1)
    _GUICtrlStatusBar_SetMinHeight($StatusBar1, 17)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    [/autoit] [autoit][/autoit] [autoit]

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Case $Button1
    daten()
    Case $Button2
    benutzer()
    Case $Button3

    Exit
    EndSwitch
    WEnd
    Exit
    Func daten()
    $handle = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:1]" );hole daten feld1
    ;MsgBox(64, "Information",$handle );test feld1
    $handle1 = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:2]" );hole daten feld2
    ;MsgBox(64, "Information",$handle1 );test feld2
    if $handle=IniRead("C:\\schueler.ini", "sektion2", "email","falsch ")And $handle1=IniRead("C:\\schueler.ini", "sektion3", "pw","falsch ")Then

    MsgBox(64, "Information","klappt" )
    Else
    MsgBox(64, "Information","klappt nicht" )
    EndIf
    $sUsername = $handle
    $sPassword = $handle1
    $sUrl = "http://www.schueler.cc/"
    $oIE = _IECreate ($sUrl)
    $oHWND = _IEPropertyGet($oIE, "hwnd")
    WinSetState ($oHWND, "", @SW_MAXIMIZE )
    $oForm = _IEFormGetCollection ($oIE, 2)
    $oUsername = _IEFormElementGetObjByName ($oForm, "email")
    $oPassword = _IEFormElementGetObjByName ($oForm, "passwort")
    _IEFormElementSetValue ($oUsername, $sUsername)
    _IEFormElementSetValue ($oPassword, $sPassword)

    [/autoit] [autoit][/autoit] [autoit]

    $oSubmit = _IEGetObjByName ($oIE, "button_login_login")
    _IEAction ($oSubmit, "click")

    [/autoit] [autoit][/autoit] [autoit]

    Exit
    EndFunc


    Func benutzer ()
    If Not FileExists("C:\\schueler.ini") Then
    _FileCreate("C:\\schueler.ini")
    EndIf
    $email= InputBox("email","Bitte email eintragen","")

    [/autoit] [autoit][/autoit] [autoit]

    IniWrite("C:\\schueler.ini", "sektion2", "email",$email)

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    $password= InputBox("email","Bitte password eintragen","")

    [/autoit] [autoit][/autoit] [autoit]

    IniWrite("C:\\schueler.ini", "sektion3", "pw",$password)

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    EndFunc

    [/autoit] [autoit][/autoit] [autoit][/autoit]


  • erstmal danke, aber ich glaube das hätte ich auch selber geschafft....
    einfach nochmal von vorne, tut mir leid dass ich so nerve^^

    also die gui hast du ja und IN der gui soll geprüft werden ob das kennwort richtig ist, d.h. kein fenster was sich öffnet...das soll alles im hintergrund laufen und wenn passwort falsch ist, dass kann man ja irgendwie auslesen weil da ja steht falsches passwort soll in der gui ein fehler kommen...hoffe es ist jetz etwas leichter zu verstehen
    also ohne internet explorer fenster ja^^..ich blick das irgendwie garnet

  • so wenn eingabe falsch wird buttion login bei fehler rot, hättes du bestimm auch geschafft,bei richtiger eingabe wird die internetverbindung auf gebaut. mehr bau ich nicht um

    Spoiler anzeigen
    [autoit][/autoit] [autoit][/autoit] [autoit]

    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <GuiStatusBar.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    #include <GuiEdit.au3>
    #include <IE.au3>
    #include <File.au3>
    Opt("MouseCoordMode",0)
    #Region ### START Koda GUI section ### Form=d:\marcel\sonstiges\skripte\autoit\forms\schueler.kxf
    $Form1_1 = GUICreate("Schüler.CC", 205, 410, 325, 202)
    GUISetBkColor(0xFFFFFF)
    $Pic1 = GUICtrlCreatePic("C:\Users\Marcel\Desktop\logo.bmp", 16, 8, 169, 89, BitOR($SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS))
    $Group1 = GUICtrlCreateGroup("Login", 9, 99, 177, 241)
    $Label1 = GUICtrlCreateLabel("E-Mail:", 16, 120, 36, 17)
    $Label2 = GUICtrlCreateLabel("Passwort:", 16, 160, 50, 17)
    GUICtrlCreateInput("", 16, 136, 161, 21)
    GUICtrlCreateInput("", 16, 176, 161, 21)
    ;$Checkbox1 = GUICtrlCreateCheckbox("eingeloggt bleiben", 24, 200, 105, 17)
    $Button1 = GUICtrlCreateButton("Login", 16, 224, 49, 21, $WS_GROUP)
    $Button2 = GUICtrlCreateButton("benutzer anlegen", 76, 224, 90, 21, $WS_GROUP)
    $Button3 = GUICtrlCreateButton("exit", 16, 350, 90, 21, $WS_GROUP)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $StatusBar1 = _GUICtrlStatusBar_Create($Form1_1)
    _GUICtrlStatusBar_SetMinHeight($StatusBar1, 17)
    GUISetState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###

    [/autoit] [autoit][/autoit] [autoit]

    While 1
    $nMsg = GUIGetMsg()
    Switch $nMsg
    Case $GUI_EVENT_CLOSE
    Case $Button1
    daten()
    Case $Button2
    benutzer()
    Case $Button3

    Exit
    EndSwitch
    WEnd
    Exit
    Func daten()
    $handle = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:1]" );hole daten feld1
    ;MsgBox(64, "Information",$handle );test feld1
    $handle1 = ControlGetText ( "Schüler.CC", "", "[CLASS:Edit; INSTANCE:2]" );hole daten feld2
    ;MsgBox(64, "Information",$handle1 );test feld2
    if $handle=IniRead("C:\\schueler.ini", "sektion2", "email","falsch ")And $handle1=IniRead("C:\\schueler.ini", "sektion3", "pw","falsch ")Then
    $sUsername = $handle
    $sPassword = $handle1
    $sUrl = "http://www.schueler.cc/"
    $oIE = _IECreate ($sUrl)
    $oHWND = _IEPropertyGet($oIE, "hwnd")
    WinSetState ($oHWND, "", @SW_MAXIMIZE )
    $oForm = _IEFormGetCollection ($oIE, 2)
    $oUsername = _IEFormElementGetObjByName ($oForm, "email")
    $oPassword = _IEFormElementGetObjByName ($oForm, "passwort")
    _IEFormElementSetValue ($oUsername, $sUsername)
    _IEFormElementSetValue ($oPassword, $sPassword)

    [/autoit] [autoit][/autoit] [autoit]

    $oSubmit = _IEGetObjByName ($oIE, "button_login_login")
    _IEAction ($oSubmit, "click")
    ; MsgBox(64, "Information","klappt" )
    Else
    ;MsgBox(64, "Information","klappt nicht" )

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    GUICtrlSetBkColor($Button1, 0xFF0000);rot
    EndIf

    [/autoit] [autoit][/autoit] [autoit]


    EndFunc


    Func benutzer ()
    If Not FileExists("C:\\schueler.ini") Then
    _FileCreate("C:\\schueler.ini")
    EndIf
    $email= InputBox("email","Bitte email eintragen","")

    [/autoit] [autoit][/autoit] [autoit]

    IniWrite("C:\\schueler.ini", "sektion2", "email",$email)

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    $password= InputBox("email","Bitte password eintragen","")

    [/autoit] [autoit][/autoit] [autoit]

    IniWrite("C:\\schueler.ini", "sektion3", "pw",$password)

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit]

    EndFunc

    [/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit] [autoit][/autoit]


  • ähm sorry dass ich das jetzt so schreibe aber du kannst doch lesen oder?
    warum tust du das dann nicht