Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

VB / Telnet

Options
  • 30-04-2003 10:29am
    #1
    Closed Accounts Posts: 751 ✭✭✭


    Hi, I'm trying to build an email client, or the like in VB (6), just wondering if you can use telnet, to connect to the pop3 server in VB. I know its possible to do, but how do you combine it with a VB program. Also if I could retrieve and send info through telnet.

    Thanks Guys!


Comments

  • Registered Users Posts: 2,781 ✭✭✭amen


    u could use the MS winsock control or
    write your own code using the win APIs.

    The win APIs will give you much greater control.

    http://www.andreavb.com/
    normally has some good links
    or just google using vb winsock


  • Closed Accounts Posts: 19,777 ✭✭✭✭The Corinthian


    I wrote one a while back (just can't find it at the moment), but it used very simelar code to this SMTP application.

    With POP3, you're connecting to port 110 and using a series of commands to authenticate, list, retrieve, etc. You should try doing this with a telnet client first and then coding it up into an app.

    HTH


Advertisement