simpleonline12 New member Sep 29, 2009 191 3 0 Apr 24, 2010 #1 I wanted to create a simple Visual Basic 2008 program that can log me into my email with a click of a button...what would a the code for the button look like?
I wanted to create a simple Visual Basic 2008 program that can log me into my email with a click of a button...what would a the code for the button look like?
kblessinggr PedoBeard Sep 15, 2008 5,723 80 0 G.R., Michigan www.kbeezie.com Apr 24, 2010 #2 Just log you in? if you're using C# in VB.net Pop3 client = new Pop3(); client.Connect("hostname"); client.Login("username", "password"); Click to expand... Not exactly sure how useful thats gona be to you anyways.
Just log you in? if you're using C# in VB.net Pop3 client = new Pop3(); client.Connect("hostname"); client.Login("username", "password"); Click to expand... Not exactly sure how useful thats gona be to you anyways.