1. application crashes outside Visual Studio - Microsoft Visual C++/VC++
2. VS 2008 crashes when a .rc file has changed outside visual studio
3. Application crashes outside IDE or any debugger - Microsoft Visual C++/VC++
4. Process opens program window when outside Visual Studio
Hi,
My program uses the Process class to start a bat file that starts an
exe. When I run my program inside Visual Studio (debug) the bat and exe
run in the background (are not visible) and all their output is
redirected to my stream reader.
But when I try to run my program outside the IDE, the exe starts in
it's own window and my prgram is put on hold. When I exit the started
program the output of the bat is flushed to my stream.
Why does this work when I'm inside Visual Studio but not outside?!
Here is the simple code I use to start the bat...
prog= new Process();
prog.StartInfo.FileName = executable;
prog.StartInfo.UseShellExecute = false;
prog.StartInfo.RedirectStandardInput = true;
prog.StartInfo.RedirectStandardOutput = true;
prog.StartInfo.CreateNoWindow = true;
if(arguments != null)
{
prog.StartInfo.Arguments = arguments;
}
I hope somebody knows an answer, otherwise weeks of work will go down
the drain.
Br,
Tom
5. Modifying Form1.h from outside Visual Studio 2005 - Microsoft Visual C++/VC++
6. port visual C++ 6.0 application to visual studio.net
I have written an application in visual C++ 6.0. Is it a lot of trouble to port that application to Visual Studio.Net. Can both 6.0 and .net reside simultaneously in the same computer?
7. port an visual studio 6 MFC application to visual c++ 2005 express
8. Problem porting a Visual C++ 6 application to Visual Studio 2005 (VC++ 8)