Results 1 to 8 of 8

Thread: Help me fix

  1. #1
    New Member
    Join Date
    May 12
    Posts
    7

    Help me fix

    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.

  2. #2
    PowerPoster Radjesh Klauke's Avatar
    Join Date
    Dec 05
    Location
    Sexbierum (Netherlands)
    Posts
    2,174

    Re: Help me fix

    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

  3. #3
    New Member
    Join Date
    May 12
    Posts
    7

    Re: Help me fix

    Quote Originally Posted by Radjesh Klauke View Post
    Where is the cInt code?
    Besides that you included .exe etc. This is a huge no-no!
    cint code?

  4. #4
    PowerPoster Radjesh Klauke's Avatar
    Join Date
    Dec 05
    Location
    Sexbierum (Netherlands)
    Posts
    2,174

    Re: Help me fix

    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:
    1. Public Shared Sub Tikrinti()
    2.    Form1.Timer1.Stop()
    3.    clnt.Report(cptch)
    4.    Form1.Faild()
    5. 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

  5. #5
    New Member
    Join Date
    May 12
    Posts
    7

    Re: Help me fix

    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.

  6. #6
    PowerPoster Radjesh Klauke's Avatar
    Join Date
    Dec 05
    Location
    Sexbierum (Netherlands)
    Posts
    2,174

    Re: Help me fix

    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

  7. #7
    New Member
    Join Date
    May 12
    Posts
    7

    Re: Help me fix

    Quote Originally Posted by Radjesh Klauke View Post
    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?
    Attached Files Attached Files
    Last edited by mantas7776; Jun 3rd, 2012 at 09:49 AM.

  8. #8
    .NUT jmcilhinney's Avatar
    Join Date
    May 05
    Location
    Sydney, Australia
    Posts
    80,816

    Re: Help me fix

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •