Click here to Skip to main content
15,901,122 members
Home / Discussions / C#
   

C#

 
GeneralRe: Resource dlls Pin
Christian Graus22-Jun-07 16:15
protectorChristian Graus22-Jun-07 16:15 
AnswerRe: Resource dlls Pin
Dave Kreskowiak22-Jun-07 17:01
mveDave Kreskowiak22-Jun-07 17:01 
GeneralRe: Resource dlls Pin
Christian Graus22-Jun-07 17:07
protectorChristian Graus22-Jun-07 17:07 
GeneralRe: Resource dlls Pin
Luc Pattyn22-Jun-07 21:48
sitebuilderLuc Pattyn22-Jun-07 21:48 
GeneralRe: Resource dlls Pin
Christian Graus22-Jun-07 21:51
protectorChristian Graus22-Jun-07 21:51 
GeneralRe: Resource dlls Pin
Luc Pattyn22-Jun-07 22:00
sitebuilderLuc Pattyn22-Jun-07 22:00 
GeneralRe: Resource dlls Pin
Dave Kreskowiak23-Jun-07 4:28
mveDave Kreskowiak23-Jun-07 4:28 
QuestionProblems with WaitForExit() Pin
jeguzmanv22-Jun-07 12:49
jeguzmanv22-Jun-07 12:49 
Hello, I want to run some Installers from my App, but I´m getting some trouble when I use WaitForExit(); cause I want to finish each task before the next one is executed, actually it executes all the process at the same time. here is the example:


System.Diagnostics.Process p1 = new System.Diagnostics.Process();
System.Diagnostics.Process p2 = new System.Diagnostics.Process();
System.Diagnostics.Process p3 = new System.Diagnostics.Process();


p1.StartInfo.FileName = path2;
p1.Start();
p1.WaitForExit();
p1.Close();
p2.StartInfo.FileName = path3;
p2.Start();
p2.WaitForExit();
p2.Close();
p3.StartInfo.FileName = path4;
p3.Start();
p3.WaitForExit();
p3.Close();

Thank you in advance!!!

Ing. José Guzmán
AnswerRe: Problems with WaitForExit() Pin
Luc Pattyn22-Jun-07 13:07
sitebuilderLuc Pattyn22-Jun-07 13:07 
AnswerRe: Problems with WaitForExit() Pin
Dave Kreskowiak22-Jun-07 17:10
mveDave Kreskowiak22-Jun-07 17:10 
QuestionWeb Browser Pin
half-life22-Jun-07 12:30
half-life22-Jun-07 12:30 
AnswerRe: Web Browser Pin
Luc Pattyn22-Jun-07 13:12
sitebuilderLuc Pattyn22-Jun-07 13:12 
GeneralRe: Web Browser Pin
half-life22-Jun-07 13:15
half-life22-Jun-07 13:15 
QuestionWeb Browser Pin
half-life22-Jun-07 12:07
half-life22-Jun-07 12:07 
AnswerRe: Web Browser Pin
Luc Pattyn22-Jun-07 12:15
sitebuilderLuc Pattyn22-Jun-07 12:15 
GeneralRe: Web Browser Pin
half-life22-Jun-07 12:23
half-life22-Jun-07 12:23 
GeneralRe: Web Browser Pin
Luc Pattyn22-Jun-07 13:02
sitebuilderLuc Pattyn22-Jun-07 13:02 
QuestionRemoving 'dead' icons from system tray Pin
Giorgi Dalakishvili22-Jun-07 10:45
mentorGiorgi Dalakishvili22-Jun-07 10:45 
AnswerRe: Removing 'dead' icons from system tray Pin
Luc Pattyn22-Jun-07 10:51
sitebuilderLuc Pattyn22-Jun-07 10:51 
GeneralRe: Removing 'dead' icons from system tray Pin
half-life22-Jun-07 11:07
half-life22-Jun-07 11:07 
GeneralRe: Removing 'dead' icons from system tray Pin
Giorgi Dalakishvili22-Jun-07 11:20
mentorGiorgi Dalakishvili22-Jun-07 11:20 
GeneralRe: Removing 'dead' icons from system tray Pin
Luc Pattyn22-Jun-07 11:28
sitebuilderLuc Pattyn22-Jun-07 11:28 
QuestionDispalying .ppt in c# Form Pin
half-life22-Jun-07 10:43
half-life22-Jun-07 10:43 
AnswerRe: Dispalying .ppt in c# Form Pin
Luc Pattyn22-Jun-07 10:58
sitebuilderLuc Pattyn22-Jun-07 10:58 
GeneralRe: Dispalying .ppt in c# Form Pin
half-life22-Jun-07 11:12
half-life22-Jun-07 11:12 

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.