Mein auto login funktioniert bloß ich möchte noch eine msgbox einblenden lassen wenn der Login nicht funktioniert hat könnte mir einer sagen wie das geht
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
WebBrowser1.Document.GetElementById("login[Name]").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("login[passwort]").SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.GetElementById("Login_button" ).InvokeMember("click")
End Sub
kannst du mir wenigstens einen ansatz geben
der code den du hast ist absolut ungeeignet, er mag funktionieren ist aber fehleranfällig und extrem langsam, das tutorial von kraizy was ich verlinkt hab ist viel besser für einen login und sowas
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
WebBrowser1.Document.GetElementById("loginForm_def ault_input_username").SetAttribute("value", TextBox1.Text)
WebBrowser1.Document.GetElementById("loginForm_def ault_input_password").SetAttribute("value", TextBox2.Text)
WebBrowser1.Document.GetElementById("loginForm_def ault_loginButton" ).InvokeMember("click")
End Sub
Wie Speichert man die Login daten und macht nen Auto Login 07/15/2010 - Metin2 Private Server - 5 Replies Souh ma wieder ne "Blöde Frage"... wie speichert man die login daten und macht nen autologin für den client wie es hier gemacht worden ist: http://www.elitepvpers.com/forum/metin2-pserver-dis cussions-questions/616285-my-new-client.html
Über ne antwort würde ich mich freuen...
(R) Auto Login 05/26/2010 - Kal Online - 1 Replies (R) > request ^^
Hey Somebody Know If The Auto Login That Was Released Few Months Ago Still Working Or Maybe There Is A New One¿?
¿Why?
Because I Hate Kalonline Login And The Fucking Problems Of Always Loading And Never Enter To The Game 80% Of The Times...
So With This Is More Easy And Fast To Try!.
Help with auto login 08/19/2009 - Mabinogi - 1 Replies Hi I'm new to this AutoIT stuff and I was trying to make a simple bot that autologin with a gui.in the gui there is an input section where i want the user to input their username and password, after that you press launch and it autologin for you ^^. I seem to get it until its time to do the send function. here's the script.
#include <GUIConstants.au3>
$widthCell=70
GUICreate(" My GUI input acceptfile", 220,120, @DesktopWidth/2-160, @DesktopHeight/2-45, -1, 0x00000018)...