What I want to do is to control a measuring instrument using LabVIEW.
The instrument vendor provides access to the instrument's functionality
through various DLLs. There are templates to write custom programs with
VB and VC++. In these templates, a VB module serves as "glue code"
between VB and the DLL. In it, a typical DLL function is declared as
follows:
Declare Function foo Lib "XYZ" (....)
These are EXPORTED functions. I can access these directly through
the LabVIEW VI CallLibraryFunction.
The problem is that some other functions are declared as
Declare Function foo2 Lib "XYZ" Alias "#1016" (...)
These functions are NOT exported, and so are not available to LabVIEW.
At least, LV complains...
What does Alias "#1016" mean?
Is there a way to access these functions? The best idea I could come up
with is to write a DLL in VB which would now export those "aliased"
functions. Would this work? And how would I proceed?
TIA, any help appreciated!
--
--germ