How would I go about doing this with the Winsock control? I have a list of POP3 commands enumerated already to help.

VB Code:
  1. Private Enum POP3States
  2.     POP3_Connect
  3.     POP3_USER
  4.     POP3_PASS
  5.     POP3_STAT
  6.     POP3_RETR
  7.     POP3_DELE
  8.     POP3_QUIT
  9. End Enum