A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Check if outlook is already running



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 28th 07, 01:11 PM posted to microsoft.public.outlook.program_addins
Yael
external usenet poster
 
Posts: 23
Default Check if outlook is already running

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  
Old May 28th 07, 07:56 PM posted to microsoft.public.outlook.program_addins
[email protected]
external usenet poster
 
Posts: 4
Default Check if outlook is already running

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 09:03 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.