Results 1 to 3 of 3

Thread: [RESOLVED] [2005] Open Microsoft Outlook

  1. #1

    Thread Starter
    PowerPoster sparrow1's Avatar
    Join Date
    May 2005
    Location
    Globetrotter
    Posts
    2,820

    Resolved [RESOLVED] [2005] Open Microsoft Outlook

    Hi All,

    Like the title said.

    How can I open Outlook and show the email address into the To textbox from Outlook.
    If you can tell me only to open Outlook then It would be very good.

    Thanks in advance,

    sparrow1
    Last edited by sparrow1; May 23rd, 2007 at 04:21 PM.
    Wkr,
    sparrow1

    If I helped you, don't forget to Rate my post. Thank you

    I'm using Visual Studio.Net 2003 and
    2005
    How to learn VB.Net Create setup with VB 2005 Drawing for beginners VB.Net Tutorials GDI+ Tutorials
    Video's for beginners

  2. #2
    Frenzied Member
    Join Date
    Jun 2005
    Posts
    1,950

    Re: [2005] Open Microsoft Outlook

    Code:
            Dim PSI As New ProcessStartInfo("OUTLOOK.EXE")
            PSI.FileName = "mailto:[email protected]"
            Process.Start(PSI)
    or I think this work too...
    Code:
            Dim PSI As New Process
            PSI.StartInfo.FileName = "OUTLOOK.EXE"
            PSI.StartInfo.Arguments = "mailto:[email protected]"
            PSI.Start()

  3. #3

    Thread Starter
    PowerPoster sparrow1's Avatar
    Join Date
    May 2005
    Location
    Globetrotter
    Posts
    2,820

    Re: [2005] Open Microsoft Outlook

    Quote Originally Posted by Bulldog
    Code:
            Dim PSI As New ProcessStartInfo("OUTLOOK.EXE")
            PSI.FileName = "mailto:[email protected]"
            Process.Start(PSI)
    or I think this work too...
    Code:
            Dim PSI As New Process
            PSI.StartInfo.FileName = "OUTLOOK.EXE"
            PSI.StartInfo.Arguments = "mailto:[email protected]"
            PSI.Start()
    Hi Buldog,

    Thanks, that worked!

    Wkr,

    sparrow1
    Wkr,
    sparrow1

    If I helped you, don't forget to Rate my post. Thank you

    I'm using Visual Studio.Net 2003 and
    2005
    How to learn VB.Net Create setup with VB 2005 Drawing for beginners VB.Net Tutorials GDI+ Tutorials
    Video's for beginners

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