08-28-2008 07:57 AM
Hello,
Recently I started to write programs with CVI using some test equipment, After searching for the drivers of the device I found the driver but for LabView and not CVIThe driver have LLB file with VI inside. I would like to use it in CVI project, how can I do it? And another question how can I use Vis in CVI project? Thank you,Igor Morozov
08-28-2008 08:23 AM
Hi Igor_SE,
VIs are specific to LabVIEW and thus CVI doesn't understand that type of file at all. Your best option is to build a DLL out of the LabVIEW VI and then call that DLL from CVI. I would suggest however making sure that your DLL doesn't export any LabVIEW-specific data types. If so, its best to modify the VI so that the outputs are common C data types to make interop easier between CVI and LabVIEW.
Best Regards,
08-28-2008 08:30 AM