Hello,
I would like to devellop DLLs in LabView 7.0 and use them in LabView 6.0.2.
Is it possible???
I tried this operation. I generated an installer (with the LabView 7.0 runtime in) and tried to load the DLL in a LabView 6.0.2 VI.
When I run the VI, LabView 6.0.2 is crashing...
Here my export function prototype:
typedef struct
{
LVBoolean status;
long code;
LStrHandle source;
} TD1;
typedef struct
{
long dimSize;
unsigned char Numeric[1];
} TD2;
typedef TD2 **TD2Hdl;
void __cdecl driver(LVBoolean *SendCommand, unsigned char DataToSend[], long LenDataToSend, char RHICommandString[], TD1 *errorInNoError, LVBoolean *GetAnswer, LStrHandle *FrameReceivedID, long *Da
taLength, TD2Hdl *DataReceived, TD1 *errorOut);
Any example ???
Thanks for your help,
Regards, Pascal.