Hi,
I have been trying to use a DLL generated using VB in
a HP VEE program. I followed the instructions in the
VEE users guide (Import Library followed by Call).
The VEE program recognizes the function declared in
the header file but it pops up an error stating that
the Function was not loadable:ConfigureDevice Error
number:604. Is there a way to debug why the function
is not loadable? Is there a specific procedure to
generate the DLL so that it is easy to integrate it
with VEE?
The contents of the header file are given below:
void ConfigureDevice(int Sync,
int Rate,
int Anpattern,
int Aninput,
int Genrate,
int Singlerror,
int Genpattern,
int Genoutput,
int Generrorinject,
int Anerrorevent)
Regards,
Vinod
---
You are currently subscribed to vrf as: rsb@soco.agilent.com
To subscribe send a blank email to "join-vrf@it.lists.it.agilent.com".
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "www.oswegosw.com/vrf_archive/".
I have been trying to use a DLL generated using VB in
a HP VEE program. I followed the instructions in the
VEE users guide (Import Library followed by Call).
The VEE program recognizes the function declared in
the header file but it pops up an error stating that
the Function was not loadable:ConfigureDevice Error
number:604. Is there a way to debug why the function
is not loadable? Is there a specific procedure to
generate the DLL so that it is easy to integrate it
with VEE?
The contents of the header file are given below:
void ConfigureDevice(int Sync,
int Rate,
int Anpattern,
int Aninput,
int Genrate,
int Singlerror,
int Genpattern,
int Genoutput,
int Generrorinject,
int Anerrorevent)
Regards,
Vinod
---
You are currently subscribed to vrf as: rsb@soco.agilent.com
To subscribe send a blank email to "join-vrf@it.lists.it.agilent.com".
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "www.oswegosw.com/vrf_archive/".
Open the dll with depends.exe and check the exports window:
http://ftp.oswegosw.com/pub/depends.zip
If the function is in a class you won't be able to use it without instancing
the class. If not I don't know why, but the name probably isn't
ConfigureDevice, it's _ConfigureDevice@36. Actually, try that first. I think
I remember running into this problem with some GenRad software.
-SHAWN-
---
You are currently subscribed to vrf as: rsb@soco.agilent.com
To subscribe send a blank email to "join-vrf@it.lists.it.agilent.com".
To unsubscribe send a blank email to "leave-vrf@it.lists.it.agilent.com".
To send messages to this mailing list, email "vrf@agilent.com".
If you need help with the mailing list send a message to "owner-vrf@it.lists.it.agilent.com".
Search the "unofficial vrf archive" at "www.oswegosw.com/vrf_archive/".