03-24-2023 05:52 AM
I am trying to build a CLI exe written in C through Lab Windows CVI. It builds successfully with some warnings. I want to spawn that through JavaScript and process the output of that with JavaScript itself. The CLI exe when called displays some "Non-fatal runtime errors". Do you guys have any idea how can I remove them or prevent them from displaying.
03-24-2023 07:43 AM
Well, the only solution is to fix your runtime errors. Seriously.
Also make sure [Build][Target Settings] is set to [Create console application], and you can also SetStdioWindowOptions (, 0, ); and SetStdioWindowVisibility (0);
But seriously, debug your program and fix the errors.