CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2001
    Location
    Minneapolis, MN, USA
    Posts
    150

    Smile Email Program/Tips?

    Has anyone messed around with Sending email with VB.NET? OR do you know of any tutorials?

    THANKS!!!

  2. #2
    Join Date
    May 2002
    Posts
    13
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured