nolc
July 8th, 2002, 04:24 PM
Has anyone messed around with Sending email with VB.NET? OR do you know of any tutorials?
THANKS!!!
THANKS!!!
|
Click to See Complete Forum and Search --> : Email Program/Tips? nolc July 8th, 2002, 04:24 PM Has anyone messed around with Sending email with VB.NET? OR do you know of any tutorials? THANKS!!! lilshoob July 9th, 2002, 07:11 AM I have created a link label field that users can use to email others. Below is my code for the On_click event for the link label. llbEmail.LinkVisited = True System.Diagnostics.Process.Start("mailto:" & txtEmail.Text) llbEmail = link label field txtEmail = textbox field which is bound to the users email address from an Access db codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |