07-14-2023 08:28 AM
Hi all
I'm trying to build an exe containing daq write and read.
But I get an error !
Should I have included DAQmx drivers in the exe ?
And if, where ?
Solved! Go to Solution.
07-14-2023 08:34 AM - edited 07-14-2023 08:38 AM
After you create an executable build you should create also an installer build for your application. In there you can select to add additional installers besides your application and the LabVIEW runtime.
DAQmx uses device drivers and there is no good way to just copy them onto a different system. They have to be properly installed on every system you want to use them on.
Even the non device driver part of DAQmx is complex enough that you could spend days to track down which files need to be copied where and still not get a working system. Simply let the DAQmx installer do everything for you and by integrating it into your application installer you get a single installer.
07-14-2023 10:00 AM
Great and thank you for a good explanation 😊