06-30-2010 06:57 AM
Hello
What is this error mean?
Error 7 occurred at NI_LVConfig.lvlib:Load.vi
Possible reason(s):
LabVIEW: File not found. The file might have been moved or deleted, or the file path might be incorrectly formatted for the operating system. For example, use \ as path separators on Windows, : on Mac OS, and / on Linux. Verify that the path is correct using the command prompt or file explorer.
-mfp
09-01-2010 04:13 PM
Usually it means you are trying to access a file that does not exist. Check the file path and file name.
09-02-2010 05:35 AM
Andrew is right. The file you're trying to access does not exist. This is probably because you're using relative application path VIs, which changed when you built your executable. This is most likely the source of your error.
Regards,
Arjun Kumar
01-18-2011 12:27 AM
Did you solve this problem? If you did, pls tell me! Thanks.
01-18-2011 01:04 AM
What usually needs to be done is an extra Strip Path to the path when running an executable, to have it work in both environments you can use Application.kind property filter this step.
/Y
06-22-2016 01:14 PM
Howdy,
Did you ever figure out how to fix this? I am having the same issue. I'm trying to build with LabVIEW 2015 and I see that I have the necessary files in:
C:\Program Files (x86)\National Instruments\LabVIEW 2015\vi.lib\Utility\config.llb
This contains the "Load.vi" and "NI_LVConfig.lvlib", but i'm still getting this error.
Thanks!
MPicazo
06-22-2016 02:11 PM
THe error message is not telling the library is missing but rather the name of the component in the library that detected the error.
Error 7 says the file that the config function was trying to access does not exist.
Check the path and make sure it is correct.
Ben