First time it fills info good 2nd time it starts refreshing and putting same captcha but i dont get why (not pictures new captcha).
please help me to fix i cant figure that out
source attached
Printable View
First time it fills info good 2nd time it starts refreshing and putting same captcha but i dont get why (not pictures new captcha).
please help me to fix i cant figure that out
source attached
Where is the cInt code?
Besides that, you included .exe etc. This is a huge no-no!
I guess you know your own project, or am I wrong here...
Your project includes a clnt.vb
Your code doesn't work without.
vb.net Code:
Public Shared Sub Tikrinti() Form1.Timer1.Stop() clnt.Report(cptch) Form1.Faild() End Sub
now another problem it makes dublicates of accounts in file i have no idea why. look at attached files. please help me thanks
Post your code which has to do with your issues and stop uploading projects with assemblies. I'm sure there are due to the size of your upload.
Pavyko() is never used in any other place but it makes dublicates
Code:Private Sub WebBrowser1_DocumentCompleted() Handles WebBrowser1.DocumentCompleted
If (WebBrowser1.Url.ToString = "http://signup.leagueoflegends.com/en/signup/download") Then
Timer1.Stop()
Laikas = 0
Pavyko()
WebBrowser1.Navigate("https://signup.leagueoflegends.com/en/signup/index?ref=4f926c770d5c1830366931")
End If
If (WebBrowser1.Url.ToString = "https://signup.leagueoflegends.com/en/signup/index?ref=4f926c770d5c1830366931") Then
Rasyk()
End If
End Sub
EDIT: webpage is loaded 2 times no idea why but how i can prevent dublicates?Code:Public Function Pavyko()
My.Computer.FileSystem.WriteAllText("C:\Accounts.txt", tbNick.Text.ToString + Accs + ":" + tbPass.Text.ToString, True)
My.Computer.FileSystem.WriteAllText("C:\Accounts.txt", Environment.NewLine, True)
End Function
What RK means is that it is against forum rules to attach binary files or archives that contain binary files. That's because they might contain malicious code and do damage to those who download and run them. At least if we download code we can see exactly what it does. If you want to upload a whole project then you need to delete the 'obj' and 'bin' folders first, which contain the compiled assemblies.
That said, uploading a whole project should be a last resort. Doing so requires us to download a file, extract it, open it in the IDE and then search through the project for the relevant code. Sometimes that's required but not usually. Your first option should be to post the relevant code and ONLY the relevant code directly, inside formatting tags, with the specific lines of interest indicated if appropriate, e.g. the line that an error occurs on. That way we can see what we need to see without going anywhere or doing anything. If you want complete strangers to volunteer their time to help you, you have the best chance if you make it as easy as possible, and safe, for them to do so.