I am trying to lauch a LabWindows/CVI executable built in debug mode using .NETs System.Diagnostics.Process method.
This method works with LabWindows/CVI executables built in release mode, but not in debug mode.
Process p = new Process();
p.StartInfo.FileName = "program_dbg.exe"; // works fine for "program.exe"
p.Start();
The process attempts to start but exits with exit code 11552540. It does not even execute the first line of (programmed) code in the executable.
Am I missing something? Are there any arguments I need to use to launch a LabWindows/CVI executable built in debug mode?