Does anyone has a guide to make a Neopets Login?

Discussion in 'Code Snippets and Tutorials' started by Erkore, Feb 7, 2007.

  1. Erkore

    Erkore Level I

    Joined:
    Feb 2, 2007
    Messages:
    82
    Likes Received:
    2
    Location:
    Brazil
    I´ve find some scripts , but it´s useless if you can´t do the login ,so if anyone has it , or can explain to me... :roll:
     
  2. ricky92

    ricky92 Administrator
    Staff Member

    Joined:
    Nov 10, 2006
    Messages:
    1,866
    Likes Received:
    67
    What do you use to connect to internet???
     
  3. Erkore

    Erkore Level I

    Joined:
    Feb 2, 2007
    Messages:
    82
    Likes Received:
    2
    Location:
    Brazil
    Do you mean the browser?
     
  4. ricky92

    ricky92 Administrator
    Staff Member

    Joined:
    Nov 10, 2006
    Messages:
    1,866
    Likes Received:
    67
    No, I mean... Do you use winsock/a wrapper/something else???
     
  5. Erkore

    Erkore Level I

    Joined:
    Feb 2, 2007
    Messages:
    82
    Likes Received:
    2
    Location:
    Brazil
    Oh, that´s the point i´ve learned a little about VB6,read some guides here and there, but when comes the REAL part, I don´t nothing, I mean I know how put the labels,the text box and make these things work, but I don´t know how to make it login to the neopets site or something, I´m looking for any guides but it´s hard to find, because I need a guide about neopets, to learn to this we need to talk with people who program for neopets.
     
  6. ricky92

    ricky92 Administrator
    Staff Member

    Joined:
    Nov 10, 2006
    Messages:
    1,866
    Likes Received:
    67
    Ok, then just wait. I'll make a beginners guide for Visual Basic 6!!!
     
  7. Erkore

    Erkore Level I

    Joined:
    Feb 2, 2007
    Messages:
    82
    Likes Received:
    2
    Location:
    Brazil
    ^^, but You´ll do a guide explaining every button,toolbar and that things,or I´ll teach how using the VB for neopets,like refresher or like my problem how to make you login?
     
  8. ricky92

    ricky92 Administrator
    Staff Member

    Joined:
    Nov 10, 2006
    Messages:
    1,866
    Likes Received:
    67
    neopets things... I think any guide on google is good to understand how to use labels and buttons... ^^
     
  9. expon

    expon Administrator
    Staff Member

    Joined:
    Oct 30, 2006
    Messages:
    1,393
    Likes Received:
    56
    Location:
    UK
    There is a neopets login example in the download section for VB6 I believe and there is some code for it pasted for VB.net users too.
     
  10. the_skip

    the_skip Level IV

    Joined:
    Dec 25, 2006
    Messages:
    2,354
    Likes Received:
    1
    Location:
    Indiana
    I know you use the http wraper but does anyone have a guide on how to use it or another thing in vb so you can refresh a page
    Where di everyone lear that anyways
     
  11. ricky92

    ricky92 Administrator
    Staff Member

    Joined:
    Nov 10, 2006
    Messages:
    1,866
    Likes Received:
    67
    a page refresher??? It's really simple:
    All you need is:
    a textBox named "txtUrl"
    a HTTPWrapper named "w"
    a button named "cmdRefresh"
    a timer named "tmrRefresh" [you need to set the interval to something like 2000 ms and the Enabled Propriety to False]

    Use the code for the cmdRefresh_Click() Sub:
    Code (Text):
    1. tmrRefresh.Enabled = True
    And in the tmrRefresh_Timer() Sub:
    Code (Text):
    1. w.GetWrapper txtUrl.Text
    Done!!!

    P.S. = If you want to record events, then it's a bit more complicated...
     
  12. the_skip

    the_skip Level IV

    Joined:
    Dec 25, 2006
    Messages:
    2,354
    Likes Received:
    1
    Location:
    Indiana
    I ment where did you learn all of this stuff not how to do it but how do you know how to do it
     
  13. ricky92

    ricky92 Administrator
    Staff Member

    Joined:
    Nov 10, 2006
    Messages:
    1,866
    Likes Received:
    67
    I bought a book, but I learned how to use Neopets codes just googleing ;)
     
  14. the_skip

    the_skip Level IV

    Joined:
    Dec 25, 2006
    Messages:
    2,354
    Likes Received:
    1
    Location:
    Indiana
    do you know any web sites