08-07-2024 02:31 PM
I am using multiple call library function nodes with WINAPI calling convention. I have gotten my program to work in LabVIEW 2024, but unfortunately it needs to be used in a LabVIEW 2018 environment. When I run it in 2018, the first Call Library Function returns the error 1097? What could be possible sources of this error?
Solved! Go to Solution.
08-07-2024 02:44 PM
If your dll is 32 bit, you should use 32 bit LabVIEW;
if your dll is 64 bit, you should use 64 bit LabVIEW.
08-08-2024 06:17 AM - edited 08-08-2024 06:21 AM
My dll is 32 bit and my labview is 32 bit on both 2024 and 2018.
I am running windows 10 on both laptops as well.
08-08-2024 11:03 AM
The solution was within my DLL code, it was a problem with the hardware of the laptop that was running 2018, as it had extra drivers that was causing the code to have an access violation. This makes sense as error 1097 typically means something has occurred within the DLL itself.