Possible Duplicate:
Redirect but also display process output stream
var startInfo=new ProcessStartInfo(java, serverMemoryArguments + " -jar \"" + latestBukkit.info.Name + "\"")
{ WorkingDirectory = latestBukkit.info.DirectoryName ,
RedirectStandardError=true,
// RedirectStandardOutput=true,
UseShellExecute = false,
//CreateNoWindow=true,
ErrorDialog = true,
ErrorDialogParentHandle=this.Handle,
};
I want to fork the output, not just redirect it... I want to listen and have it show in the normal window.
Can I?