05-06-2006 07:27 AM
05-08-2006 02:42 PM
05-08-2006 05:08 PM
LabWindows/CVI
VARIANT tmpVariant = CA_VariantEmpty();
double *numArray = NULL;
unsigned int numElements;
TS_PropertyGetValVariant(propObj, &errorInfo,
"Locals.NumArray", 0, &tmpVariant);
CA_VariantGet1DArray(&tmpVariant, CAVT_DOUBLE, &numArray,
&numElements);
CA_FreeMemory(numArray);
CA_VariantClear(&tmpVariant);
05-31-2006 01:41 AM
Hi Jacky,
There is an example in the Teststand examples folder that should help you with this.
Regards
Ray Farmer
05-31-2006 02:16 AM
Hi jacky,
The propObj this needs to be the SequenceContext reference. How have you derived this reference?
Regards
Ray Farmer
05-31-2006 08:08 PM
06-01-2006 12:40 AM
Hi,
Ok, so why are you not doing this;
TS_PropertyGetValVariant(seqContextCVI, &errorInfo,
"Locals.NumArray", 0, &tmpVariant);
Regards
Ray Farmer