Click here to Skip to main content
15,919,749 members
Home / Discussions / C#
   

C#

 
GeneralRe: kill proccess with C# Pin
crash89331-May-07 19:24
crash89331-May-07 19:24 
GeneralRe: kill proccess with C# Pin
crash89331-May-07 20:01
crash89331-May-07 20:01 
AnswerRe: kill proccess with C# Pin
Martin#31-May-07 20:20
Martin#31-May-07 20:20 
GeneralRe: kill proccess with C# Pin
crash89331-May-07 20:46
crash89331-May-07 20:46 
GeneralRe: kill proccess with C# Pin
Martin#31-May-07 21:02
Martin#31-May-07 21:02 
GeneralRe: kill proccess with C# Pin
crash8933-Jun-07 14:58
crash8933-Jun-07 14:58 
AnswerRe: kill proccess with C# Pin
Martin#10-Jun-07 20:07
Martin#10-Jun-07 20:07 
GeneralRe: kill proccess with C# Pin
crash89311-Jun-07 1:13
crash89311-Jun-07 1:13 
1. int ThisSession = System.Diagnostics.Process.GetCurrentProcess().SessionId;
2.
int thisPID = System.Diagnostics.Process.GetCurrentProcess().Id;
3.
foreach (System.Diagnostics.Process proc in System.Diagnostics.Process.GetProcessesByName(application))
4.
{
5.
if (proc.SessionId == ThisSession)
6.
{
7.
proc.CloseMainWindow();
8.
proc.WaitForExit(Wait);
9.
if (!proc.HasExited)
10.
{
11.
proc.Kill();
12.
}
13.
proc.Dispose();
14.
}
GeneralRe: kill proccess with C# Pin
Martin#11-Jun-07 1:19
Martin#11-Jun-07 1:19 
GeneralRe: kill proccess with C# Pin
crash89311-Jun-07 4:32
crash89311-Jun-07 4:32 
GeneralRe: kill proccess with C# Pin
Martin#11-Jun-07 19:23
Martin#11-Jun-07 19:23 
GeneralRe: kill proccess with C# Pin
crash89312-Jun-07 5:50
crash89312-Jun-07 5:50 
AnswerRe: kill proccess with C# Pin
blackjack215031-May-07 20:59
blackjack215031-May-07 20:59 
GeneralRe: kill proccess with C# Pin
Martin#31-May-07 21:06
Martin#31-May-07 21:06 
GeneralRe: kill proccess with C# Pin
crash8931-Jun-07 4:49
crash8931-Jun-07 4:49 
GeneralRe: kill proccess with C# Pin
Martin#1-Jun-07 8:21
Martin#1-Jun-07 8:21 
GeneralRe: kill proccess with C# Pin
crash8931-Jun-07 8:25
crash8931-Jun-07 8:25 
QuestionHow to install Microsoft Indexing Services automatically Pin
Muhammad Nauman Yousuf31-May-07 10:05
Muhammad Nauman Yousuf31-May-07 10:05 
QuestionGeneral C# Questions Pin
Revant Jain31-May-07 9:16
Revant Jain31-May-07 9:16 
AnswerRe: General C# Questions Pin
PIEBALDconsult31-May-07 9:19
mvePIEBALDconsult31-May-07 9:19 
GeneralRe: General C# Questions Pin
Revant Jain31-May-07 9:22
Revant Jain31-May-07 9:22 
QuestionDataGrid Object Location Pin
Expert Coming31-May-07 9:02
Expert Coming31-May-07 9:02 
QuestionRe: DataGrid Object Location Pin
punchcardRay31-May-07 10:48
punchcardRay31-May-07 10:48 
QuestionManagementBaseObject.SetPropertyValue not working Pin
Le centriste31-May-07 8:45
Le centriste31-May-07 8:45 
AnswerRe: ManagementBaseObject.SetPropertyValue not working Pin
Dave Kreskowiak31-May-07 8:50
mveDave Kreskowiak31-May-07 8:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.