LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

how to use launchexecutableex

I get an error 'Unresolved external Launchexecutableex@12' ,when I use dinamic link library from build menu in CVI 5.0 demo,althrought when I compile my code i get no errors or warnings.I have included the utility.h file ,doI need to include others headers to make work launchexecutableex?
0 Kudos
Message 1 of 3
(3,014 Views)
This is a runtime error message informing you that CVI can't resolve an external reference (link error). You need to figure out what is missing...
0 Kudos
Message 2 of 3
(3,014 Views)
This error is a little tricky. I think a big part to solving this would be in checking when you get the error. If you get the error while building the project, it is more than likely a linker error. If you get the error during runtime, I would guess it to be an execution error in your DLL.
If it happened at build time, I think you must be linking to the library or whatever from your dll that isn't correct, and so the linker errors out. If the error is during runtime, I think that something has happened in your DLL or your definition of the function that has caused the engine to error because it doesn't find anything. Maybe you renamed it, or typed it wrong or something along those lines.
0 Kudos
Message 3 of 3
(3,014 Views)