Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. Open Outlook

Open Outlook

Scheduled Pinned Locked Moved C#
csharptutorialquestion
4 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    naresh_pandey13
    wrote on last edited by
    #1

    How can i Open OUTLOOK EXPRESS from another Application .Example Suppose I have a Button upon a form in C#.net and I want that I will click upon the button a Outlook should be opened . Thanks :wtf::confused: This is Jitendra

    P S B 3 Replies Last reply
    0
    • N naresh_pandey13

      How can i Open OUTLOOK EXPRESS from another Application .Example Suppose I have a Button upon a form in C#.net and I want that I will click upon the button a Outlook should be opened . Thanks :wtf::confused: This is Jitendra

      P Offline
      P Offline
      Peter Nirschl
      wrote on last edited by
      #2

      This is very simple! Step 1: Create an instance of an System.Diagnostics.Process Object. Example: private System.Diagnostics.Process process1; Step 2: Set the properties of process1. The following property is important: StartInfo.FileName Example: this.process1.StartInfo.FileName = "[path]"; Step 3: Start the process. To start the process you call the method Start(). Example: this.process1.Start(); If you need the complete code sample let me know. Good luck!

      1 Reply Last reply
      0
      • N naresh_pandey13

        How can i Open OUTLOOK EXPRESS from another Application .Example Suppose I have a Button upon a form in C#.net and I want that I will click upon the button a Outlook should be opened . Thanks :wtf::confused: This is Jitendra

        S Offline
        S Offline
        Stefan Troschuetz
        wrote on last edited by
        #3

        You can shorten this procedure by using the static Start method. Process.Start(path, arguments); The parameter arguments is optional, so the method call will look like this. Process.Start(path);

        1 Reply Last reply
        0
        • N naresh_pandey13

          How can i Open OUTLOOK EXPRESS from another Application .Example Suppose I have a Button upon a form in C#.net and I want that I will click upon the button a Outlook should be opened . Thanks :wtf::confused: This is Jitendra

          B Offline
          B Offline
          basdanny
          wrote on last edited by
          #4

          Try this one (replace the address to the actual address) Process.Start("mailto:someone@hotmail.com");

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups