Open Outlook
-
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
-
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
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! -
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
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);
-
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
Try this one (replace the address to the actual address) Process.Start("mailto:someone@hotmail.com");