Click here to Skip to main content
16,004,919 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: run-time Pin
Jon_Boy5-Jan-09 2:37
Jon_Boy5-Jan-09 2:37 
QuestionSession Out problem Pin
NidhiKanu4-Jan-09 20:18
professionalNidhiKanu4-Jan-09 20:18 
AnswerRe: Session Out problem [modified] Pin
Dave Kreskowiak5-Jan-09 1:49
mveDave Kreskowiak5-Jan-09 1:49 
GeneralRe: Session Out problem Pin
NidhiKanu5-Jan-09 2:41
professionalNidhiKanu5-Jan-09 2:41 
GeneralRe: Session Out problem Pin
Dave Kreskowiak5-Jan-09 4:00
mveDave Kreskowiak5-Jan-09 4:00 
QuestionVisual Basic 2008 Express Edition: Retrieve emails from POP3 server Pin
helen004-Jan-09 17:50
helen004-Jan-09 17:50 
AnswerRe: Visual Basic 2008 Express Edition: Retrieve emails from POP3 server Pin
NidhiKanu4-Jan-09 20:19
professionalNidhiKanu4-Jan-09 20:19 
AnswerRe: Visual Basic 2008 Express Edition: Retrieve emails from POP3 server Pin
Bharat Jain5-Jan-09 1:13
Bharat Jain5-Jan-09 1:13 
You can use the following code to send a mail , it use an smtp server,please enter proper email id as marked in the comments , i have tested it from a gmail account

   Dim smtpClient As New Net.Mail.SmtpClient()
        Dim mail As New Net.Mail.MailMessage()
        'create the message to be sent 
        mail.To.Add("test@test.com") ' Enter the Email of the person you want to send the mail to
        mail.From = New Net.Mail.MailAddress("username@gmail.com", "Your Display Name") ' Enter Your email address
        mail.Subject = "Test Message"
        mail.Body = "This is a test message"
        ' Prepare the client to send the above message
        smtpClient.Host = "smtp.gmail.com"
        smtpClient.EnableSsl = True
        smtpClient.Port = 587
        smtpClient.Credentials = New Net.NetworkCredential("username@gmail.com", "password") 'Enter username and password of the account , you want to use to send mail
        smtpClient.DeliveryMethod = Net.Mail.SmtpDeliveryMethod.Network
        smtpClient.Send(mail)


<pre>




Hope it is helpful

-Regards
Bharat Jain
Phisys Software Solutions Pvt. Ltd.
bharat.jain.nagpur@gmail.com

AnswerRe: Visual Basic 2008 Express Edition: Retrieve emails from POP3 server Pin
Ashfield5-Jan-09 1:32
Ashfield5-Jan-09 1:32 
QuestionWebBrowser Drag and Drop Pin
StuBaum4-Jan-09 11:28
StuBaum4-Jan-09 11:28 
AnswerRe: WebBrowser Drag and Drop Pin
StuBaum14-Jan-09 8:21
StuBaum14-Jan-09 8:21 
QuestionHow to create forms in background worker thread in vb.net Pin
sohaib_a4-Jan-09 7:18
sohaib_a4-Jan-09 7:18 
AnswerRe: How to create forms in background worker thread in vb.net Pin
Naji El Kotob4-Jan-09 11:32
Naji El Kotob4-Jan-09 11:32 
GeneralRe: How to create forms in background worker thread in vb.net Pin
sohaib_a4-Jan-09 19:02
sohaib_a4-Jan-09 19:02 
GeneralRe: How to create forms in background worker thread in vb.net Pin
Guffa4-Jan-09 19:42
Guffa4-Jan-09 19:42 
QuestionVBscript Pin
oburaochola4-Jan-09 5:50
oburaochola4-Jan-09 5:50 
AnswerRe: VBscript Pin
Colin Angus Mackay4-Jan-09 5:51
Colin Angus Mackay4-Jan-09 5:51 
AnswerRe: VBscript Pin
Eddy Vluggen7-Jan-09 0:49
professionalEddy Vluggen7-Jan-09 0:49 
QuestionVB Script Project Pin
oburaochola4-Jan-09 4:22
oburaochola4-Jan-09 4:22 
AnswerRe: VB homework assignment Pin
Guffa4-Jan-09 4:49
Guffa4-Jan-09 4:49 
GeneralRe: VB homework assignment Pin
oburaochola4-Jan-09 6:07
oburaochola4-Jan-09 6:07 
GeneralRe: VB homework assignment Pin
Guffa4-Jan-09 19:33
Guffa4-Jan-09 19:33 
QuestionShow form from dll? Pin
andyr20053-Jan-09 17:50
andyr20053-Jan-09 17:50 
AnswerRe: Show form from dll? Pin
dan!sh 3-Jan-09 22:54
professional dan!sh 3-Jan-09 22:54 
AnswerRe: Show form from dll? Pin
Jon_Boy4-Jan-09 5:21
Jon_Boy4-Jan-09 5:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.