Click here to Skip to main content
15,879,095 members
Home / Discussions / C#
   

C#

 
Questionclsdataclass Pin
Rhydo19-May-07 0:05
Rhydo19-May-07 0:05 
AnswerRe: clsdataclass Pin
Christian Graus19-May-07 0:33
protectorChristian Graus19-May-07 0:33 
QuestionHow can I access to a resource that is created in another thread? Pin
ali_reza_zareian18-May-07 23:46
ali_reza_zareian18-May-07 23:46 
AnswerRe: How can I access to a resource that is created in another thread? Pin
Dave Kreskowiak19-May-07 18:19
mveDave Kreskowiak19-May-07 18:19 
QuestionHow to kill exe ? Windows.NET Pin
NanaAM18-May-07 22:27
NanaAM18-May-07 22:27 
AnswerRe: How to kill exe ? Windows.NET Pin
Giorgi Dalakishvili18-May-07 23:09
mentorGiorgi Dalakishvili18-May-07 23:09 
GeneralRe: How to kill exe ? Windows.NET Pin
NanaAM19-May-07 2:01
NanaAM19-May-07 2:01 
GeneralRe: How to kill exe ? Windows.NET Pin
teejayem19-May-07 3:35
teejayem19-May-07 3:35 
you have to use the process class like giorgi suggested.
using System.Diagnostics;

            Process[] currentProcesses = Process.GetProcessesByName("iexplore");

            foreach (Process process in currentProcesses)
                process.Kill();


Don't be overcome by evil, but overcome evil with good

GeneralRe: How to kill exe ? Windows.NET Pin
Dave Kreskowiak19-May-07 4:38
mveDave Kreskowiak19-May-07 4:38 
GeneralRe: How to kill exe ? Windows.NET Pin
PIEBALDconsult19-May-07 11:22
mvePIEBALDconsult19-May-07 11:22 
GeneralRe: How to kill exe ? Windows.NET Pin
Dave Kreskowiak19-May-07 18:17
mveDave Kreskowiak19-May-07 18:17 
GeneralRe: How to kill exe ? Windows.NET Pin
NanaAM20-May-07 20:38
NanaAM20-May-07 20:38 
GeneralRe: How to kill exe ? Windows.NET Pin
Dave Kreskowiak21-May-07 13:02
mveDave Kreskowiak21-May-07 13:02 
GeneralRe: How to kill exe ? Windows.NET Pin
NanaAM21-May-07 18:21
NanaAM21-May-07 18:21 
GeneralRe: How to kill exe ? Windows.NET Pin
NanaAM20-May-07 18:48
NanaAM20-May-07 18:48 
Questionhow to find the installed time of my application Pin
pashitech18-May-07 22:21
pashitech18-May-07 22:21 
AnswerRe: how to find the installed time of my application Pin
Manoj Kumar Rai18-May-07 23:14
professionalManoj Kumar Rai18-May-07 23:14 
AnswerRe: how to find the installed time of my application Pin
Scott Dorman19-May-07 5:07
professionalScott Dorman19-May-07 5:07 
QuestionCOMException while opening MS-Word files using APIs Pin
Abhishek Joshi18-May-07 20:21
Abhishek Joshi18-May-07 20:21 
AnswerRe: COMException while opening MS-Word files using APIs Pin
mav.northwind18-May-07 21:03
mav.northwind18-May-07 21:03 
GeneralRe: COMException while opening MS-Word files using APIs Pin
Abhishek Joshi18-May-07 22:20
Abhishek Joshi18-May-07 22:20 
AnswerRe: COMException while opening MS-Word files using APIs Pin
Manoj Kumar Rai18-May-07 23:10
professionalManoj Kumar Rai18-May-07 23:10 
QuestionHow to scroll two listbox together? Pin
nav_smec18-May-07 19:05
nav_smec18-May-07 19:05 
AnswerRe: How to scroll two listbox together? Pin
Dave Herren21-May-07 12:01
Dave Herren21-May-07 12:01 
QuestionStatusStrip Height Pin
Patricker18-May-07 17:31
Patricker18-May-07 17:31 

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.