Click here to Skip to main content
15,903,033 members
Home / Discussions / C#
   

C#

 
Generalcrystal report Pin
yitong13-Jul-05 20:34
yitong13-Jul-05 20:34 
GeneralRe: crystal report Pin
User 209307313-Jul-05 21:30
User 209307313-Jul-05 21:30 
GeneralConsole App Input Pin
Expert Coming13-Jul-05 20:15
Expert Coming13-Jul-05 20:15 
GeneralRe: Console App Input Pin
seee sharp13-Jul-05 22:34
seee sharp13-Jul-05 22:34 
GeneralWindows Service Pin
ksanju100013-Jul-05 20:15
ksanju100013-Jul-05 20:15 
GeneralRe: Windows Service Pin
Vasudevan Deepak Kumar14-Jul-05 5:16
Vasudevan Deepak Kumar14-Jul-05 5:16 
GeneralWindows Service in c# Pin
ksanju100013-Jul-05 20:14
ksanju100013-Jul-05 20:14 
GeneralRe: Windows Service in c# Pin
Dave Kreskowiak14-Jul-05 4:18
mveDave Kreskowiak14-Jul-05 4:18 
Going back to your original post, I already pointed out HUGE problems with your code, that by looking at this post, you haven't fixed at all.

But, to find all the "a" processes and kill them, then restart a new one:
Process[] foundProcs = Process.GetProcessesByName(@"a");
foreach (Process proc in foundProcs)
{
    proc.Kill();
}
 
Process.Start(@"notepad");



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

Generaltree view issues Pin
Anonymous13-Jul-05 17:31
Anonymous13-Jul-05 17:31 
GeneralRe: tree view issues Pin
Rob Graham13-Jul-05 17:40
Rob Graham13-Jul-05 17:40 
GeneralRe: tree view issues Pin
Anonymous13-Jul-05 17:57
Anonymous13-Jul-05 17:57 
GeneralRe: tree view issues Pin
mav.northwind13-Jul-05 22:46
mav.northwind13-Jul-05 22:46 
GeneralRe: tree view issues Pin
Anonymous14-Jul-05 6:00
Anonymous14-Jul-05 6:00 
GeneralCombo box bind to object ... need help Pin
kakarato13-Jul-05 16:37
kakarato13-Jul-05 16:37 
GeneralRe: Combo box bind to object ... need help Pin
Christian Graus13-Jul-05 16:57
protectorChristian Graus13-Jul-05 16:57 
GeneralRe: Combo box bind to object ... need help Pin
kakarato13-Jul-05 20:39
kakarato13-Jul-05 20:39 
GeneralRe: Combo box bind to object ... need help Pin
J4amieC13-Jul-05 21:56
J4amieC13-Jul-05 21:56 
GeneralRe: Combo box bind to object ... need help Pin
kakarato13-Jul-05 22:14
kakarato13-Jul-05 22:14 
Questionhow can I access, windows forms properites by other thread than the form Pin
machocr13-Jul-05 11:18
machocr13-Jul-05 11:18 
AnswerRe: how can I access, windows forms properites by other thread than the form Pin
Sau Fan Lee13-Jul-05 13:13
Sau Fan Lee13-Jul-05 13:13 
GeneralRe: how can I access, windows forms properites by other thread than the form Pin
machocr14-Jul-05 4:25
machocr14-Jul-05 4:25 
GeneralMemory problem Pin
AnonymousTwo13-Jul-05 9:21
AnonymousTwo13-Jul-05 9:21 
GeneralRe: Memory problem Pin
Dave Kreskowiak13-Jul-05 9:42
mveDave Kreskowiak13-Jul-05 9:42 
GeneralGET Image Constructor Pin
Expert Coming13-Jul-05 9:12
Expert Coming13-Jul-05 9:12 
GeneralRe: GET Image Constructor Pin
Judah Gabriel Himango13-Jul-05 9:18
sponsorJudah Gabriel Himango13-Jul-05 9:18 

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.