![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
How can I check from C# code if outlook program is already running?
if not, I run outlook with: System.Diagnostics.Process.Start("OUTLOOK.EXE"); |
Ads |
#2
|
|||
|
|||
![]()
On May 28, 8:11 am, Yael wrote:
How can I check from C# code if outlook program is already running? if not, I run outlook with: System.Diagnostics.Process.Start("OUTLOOK.EXE"); /// summary /// Determines whether or not Outlook.exe is running on this computer. /// /summary /// returnsRunning or not/returns private bool IsRunning() { bool Result = false; System.Diagnostics.Process[] aProcess = System.Diagnostics.Process.GetProcesses(); for ( int ProcessIndex =0; ProcessIndex aProcess.Length ; ProcessIndex++) { if ( aProcess[ProcessIndex].ProcessName.ToUpper() == "OUTLOOK" ) { Result = true; break; } } return Result; } |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Outlook Still Running | Remove ABCD from Email address to reply | Outlook - General Queries | 2 | April 20th 07 02:26 AM |
Outlook always running | geepee | Outlook - Installation | 1 | March 4th 07 12:49 AM |
Running two sessions of Outlook... | Ivan T Williams | Outlook - General Queries | 3 | January 4th 07 02:45 PM |
Outlook Task Still Running | Dan | Outlook and VBA | 5 | October 21st 06 01:37 AM |
Outlook express can't spell check. It says to check later. | Harold | Outlook - General Queries | 2 | September 8th 06 10:56 PM |