Click here to Skip to main content
15,922,650 members
Home / Discussions / C#
   

C#

 
GeneralRe: Optimizing GDI+ Drawing Pin
Guffa20-Oct-05 22:02
Guffa20-Oct-05 22:02 
QuestionRemoting in C# Pin
Uberto20-Oct-05 17:13
Uberto20-Oct-05 17:13 
QuestionDetecting an specific port Pin
picasso220-Oct-05 17:13
picasso220-Oct-05 17:13 
AnswerRe: Detecting an specific port Pin
S. Senthil Kumar21-Oct-05 2:20
S. Senthil Kumar21-Oct-05 2:20 
GeneralRe: Detecting an specific port Pin
Anonymous21-Oct-05 6:20
Anonymous21-Oct-05 6:20 
QuestionParentfolder Pin
Tran Ngoc Minh20-Oct-05 16:36
Tran Ngoc Minh20-Oct-05 16:36 
AnswerRe: Parentfolder Pin
MoustafaS20-Oct-05 17:17
MoustafaS20-Oct-05 17:17 
Questionwhy is the child process not being displayed Pin
kush2820-Oct-05 13:37
kush2820-Oct-05 13:37 
Ok here is a summary of what the program is doing.

Am calling a child process called Helloworld from a parent process builder using the command line

> Builder.exe c:/helloworld.exe c:/log.txt

Before i capture the output on the helloworld from the builder(before i used the UseShellExecute and RedirectStandardOutput, it used to show both processes on the screen.

but after i capture the output on the helloworld from the builder, it no longer shows the child process (helloworld)

here is the code snippet
anyone has an idea why it does not show it, and if yes, how should i do it.
...
....
p = new Process();
p.StartInfo.FileName = targetFile;
p.StartInfo.CreateNoWindow = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.UseShellExecute = false;
p.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
p.Start();
pStartTime = (p.StartTime.ToString());
processOutput = p.StandardOutput.ReadToEnd();
p.WaitForExit();
pEndTime = (p.ExitTime.ToString());
p.Close();
...
...
PLEASE HELP !!

Thanks

QuestionTest connection failed on a password protected Access database Pin
sebastud20-Oct-05 12:57
sebastud20-Oct-05 12:57 
AnswerRe: Test connection failed on a password protected Access database Pin
sebastud20-Oct-05 23:34
sebastud20-Oct-05 23:34 
GeneralRe: Test connection failed on a password protected Access database Pin
mav.northwind21-Oct-05 3:26
mav.northwind21-Oct-05 3:26 
GeneralRe: Test connection failed on a password protected Access database Pin
sebastud21-Oct-05 7:14
sebastud21-Oct-05 7:14 
QuestionGUI using C# Pin
celllllllll20-Oct-05 12:48
celllllllll20-Oct-05 12:48 
AnswerRe: GUI using C# Pin
Christian Graus20-Oct-05 12:51
protectorChristian Graus20-Oct-05 12:51 
GeneralRe: GUI using C# Pin
celllllllll20-Oct-05 12:55
celllllllll20-Oct-05 12:55 
GeneralRe: GUI using C# Pin
Christian Graus20-Oct-05 12:56
protectorChristian Graus20-Oct-05 12:56 
GeneralRe: GUI using C# Pin
celllllllll20-Oct-05 12:58
celllllllll20-Oct-05 12:58 
GeneralRe: GUI using C# Pin
Christian Graus20-Oct-05 13:09
protectorChristian Graus20-Oct-05 13:09 
GeneralRe: GUI using C# Pin
celllllllll20-Oct-05 13:11
celllllllll20-Oct-05 13:11 
QuestionHow can I get the Ip address list that a dhcp server leased using C#? Pin
Member 162442720-Oct-05 12:07
Member 162442720-Oct-05 12:07 
Questionweb browser plug in ? Pin
Christian Graus20-Oct-05 12:05
protectorChristian Graus20-Oct-05 12:05 
QuestionLorge volume ...Can .NET Handle ? Pin
dvsr20-Oct-05 11:47
dvsr20-Oct-05 11:47 
AnswerRe: on .net Pin
Christian Graus20-Oct-05 12:02
protectorChristian Graus20-Oct-05 12:02 
GeneralRe: on .net Pin
dvsr20-Oct-05 12:10
dvsr20-Oct-05 12:10 
GeneralRe: on .net Pin
Christian Graus20-Oct-05 15:14
protectorChristian Graus20-Oct-05 15:14 

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.