Click here to Skip to main content
15,900,646 members
Home / Discussions / C#
   

C#

 
AnswerRe: Simple regular expression replace Pin
Le centriste16-Feb-06 10:06
Le centriste16-Feb-06 10:06 
AnswerRe: Simple regular expression replace Pin
Guffa16-Feb-06 10:29
Guffa16-Feb-06 10:29 
AnswerRe: Simple regular expression replace Pin
leppie16-Feb-06 11:04
leppie16-Feb-06 11:04 
GeneralRe: Simple regular expression replace Pin
Luis Alonso Ramos16-Feb-06 12:52
Luis Alonso Ramos16-Feb-06 12:52 
GeneralRe: Simple regular expression replace Pin
leppie16-Feb-06 22:35
leppie16-Feb-06 22:35 
QuestionDataGridView frozen rows Pin
Wjousts16-Feb-06 8:51
Wjousts16-Feb-06 8:51 
QuestionWaiting for a Process to end without freezing the starting app Pin
Dan Neely16-Feb-06 8:43
Dan Neely16-Feb-06 8:43 
AnswerRe: Waiting for a Process to end without freezing the starting app Pin
Robin Panther16-Feb-06 8:58
Robin Panther16-Feb-06 8:58 
You can handle Process.Exited event. like this:
<br />
Process notepadProcess;<br />
private void button1_Click(object sender, EventArgs e) {<br />
	notepadProcess = new Process();<br />
	notepadProcess.EnableRaisingEvents = true; // tell process to raise Exited event<br />
	notepadProcess.Exited += new EventHandler(notepadProcess_Exited); // Exited event handler<br />
	notepadProcess.StartInfo.FileName = "notepad.exe";<br />
	notepadProcess.Start();<br />
}<br />
void notepadProcess_Exited(object sender, EventArgs e) {<br />
	MessageBox.Show("Notepad process just has been exited.");<br />
	notepadProcess.Dispose();<br />
}<br />


Robin Panther http://www.robinland.com
GeneralRe: Waiting for a Process to end without freezing the starting app Pin
Dan Neely16-Feb-06 10:26
Dan Neely16-Feb-06 10:26 
Questioncalcalate running time Pin
zhujp9816-Feb-06 8:35
zhujp9816-Feb-06 8:35 
AnswerRe: calcalate running time Pin
CWIZO16-Feb-06 8:38
CWIZO16-Feb-06 8:38 
Questionhow to solve my problem about process injection in c# ? Pin
hdv21216-Feb-06 8:35
hdv21216-Feb-06 8:35 
AnswerRe: how to solve my problem about process injection in c# ? Pin
Dave Kreskowiak16-Feb-06 10:51
mveDave Kreskowiak16-Feb-06 10:51 
GeneralRe: how to solve my problem about process injection in c# ? Pin
Colin Angus Mackay16-Feb-06 13:15
Colin Angus Mackay16-Feb-06 13:15 
GeneralRe: how to solve my problem about process injection in c# ? Pin
Dave Kreskowiak16-Feb-06 14:14
mveDave Kreskowiak16-Feb-06 14:14 
Questiondirectx alpha blending Pin
kopi_b16-Feb-06 8:08
kopi_b16-Feb-06 8:08 
AnswerRe: directx alpha blending Pin
kopi_b18-Feb-06 8:06
kopi_b18-Feb-06 8:06 
QuestionPacks not getting to destination... Pin
Shy Agam16-Feb-06 7:56
Shy Agam16-Feb-06 7:56 
AnswerRe: Packs not getting to destination... Pin
Le centriste16-Feb-06 10:16
Le centriste16-Feb-06 10:16 
GeneralRe: Packs not getting to destination... Pin
Shy Agam16-Feb-06 13:52
Shy Agam16-Feb-06 13:52 
GeneralRe: Packs not getting to destination... Pin
Le centriste16-Feb-06 14:02
Le centriste16-Feb-06 14:02 
GeneralRe: Packs not getting to destination... Pin
Shy Agam17-Feb-06 2:44
Shy Agam17-Feb-06 2:44 
GeneralRe: Packs not getting to destination... Pin
Le centriste17-Feb-06 3:01
Le centriste17-Feb-06 3:01 
GeneralRe: Packs not getting to destination... Pin
Shy Agam17-Feb-06 8:11
Shy Agam17-Feb-06 8:11 
GeneralRe: Packs not getting to destination... Pin
Le centriste18-Feb-06 5:42
Le centriste18-Feb-06 5:42 

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.