3 Posted Topics
Re: Hi, I have a similar problem. I try to run a Program and I want to see its output in a RichTextBox. [CODE=C#] void start_process(){ ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = "path/to/*.exe"; psi.WorkingDirectory = "path/to/working_directory"; psi.UseShellExecute = false; psi.RedirectStandardOutput = true; Process myProc = Process.Start(psi); myProc.OutputDataReceived += new DataReceivedEventHandler(myProc_OutputDataReceived); … | |
Re: Hi darkwind! nice idea, the title sounds great. Usually the first beginners want to create an [B]MMO[/B]RPG ;) I think, and I think the others think that too, that you should not begin programming with a 3D game. Look, I started programming 5 years ago, and since 1 year I … | |
Hi Community! I have already searched the whole web about this Problem, and I didn't find anything. Maybe you can help... I want to show the number of all SQL queries I executed to load a web page. It is a very complex system I programmed, and I don't want … |
The End.