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
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
Last edited by mantas7776; Jun 3rd, 2012 at 09:35 AM.
Where is the cInt code?
Besides that, you included .exe etc. This is a huge no-no!
If you found my post helpful, please rate it.
Codebank Submission: FireFox Browser (Gecko) in VB.NET, Load files, (sub)folders treeview with Windows icons
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
If you found my post helpful, please rate it.
Codebank Submission: FireFox Browser (Gecko) in VB.NET, Load files, (sub)folders treeview with Windows icons
now another problem it makes dublicates of accounts in file i have no idea why. look at attached files. please help me thanks
Last edited by mantas7776; Jun 3rd, 2012 at 09:45 AM.
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.
If you found my post helpful, please rate it.
Codebank Submission: FireFox Browser (Gecko) in VB.NET, Load files, (sub)folders treeview with Windows icons
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 SubEDIT: 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
Last edited by mantas7776; Jun 3rd, 2012 at 09:49 AM.
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.
2007-2013
Why is my data not saved to my database? | Communicating between multiple forms | MSDN Data Walkthroughs
MSDN "How Do I?" Videos: VB | C#
VBForums Database Development FAQ
My CodeBank Submissions: VB (*NEW* More Random Random Numbers) | C# (*NEW* More Random Random Numbers)
My Blog: Using Parameters in ADO.NET | Keyboard Events | Assemblies & Namespaces