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
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
EDIT: webpage is loaded 2 times no idea why but how i can prevent dublicates?
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.