Click here to Skip to main content
15,892,697 members
Home / Discussions / C#
   

C#

 
GeneralRe: Article? Pin
Wraith Lunati31-May-07 14:05
Wraith Lunati31-May-07 14:05 
Questionkill proccess with C# Pin
crash89331-May-07 10:06
crash89331-May-07 10:06 
AnswerRe: kill proccess with C# Pin
Tarakeshwar Reddy31-May-07 10:41
professionalTarakeshwar Reddy31-May-07 10:41 
GeneralRe: kill proccess with C# Pin
crash89331-May-07 11:19
crash89331-May-07 11:19 
GeneralRe: kill proccess with C# Pin
Christian Graus31-May-07 11:26
protectorChristian Graus31-May-07 11:26 
GeneralRe: kill proccess with C# Pin
Tarakeshwar Reddy31-May-07 12:37
professionalTarakeshwar Reddy31-May-07 12:37 
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 
i found this

foreach (System.Diagnostics.Process proc in System.Diagnostics.Process.GetProcessesByName(textBox1.Text))

{
proc.CloseMainWindow();
proc.WaitForExit(10000);
if (!proc.HasExited)
{
proc.Kill();
}
}


but im having trouble inputing the proccess i want to kill

it seems like no mater what i enter it allways returns a null value to proc
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 
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 

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.