04-18-2001 05:30 PM
04-19-2001 02:00 AM
08-14-2006 01:36 AM
08-14-2006 01:44 AM
In order to better describe my issue, I attached a picture here
Thanks!
Jacky
08-15-2006 10:22 AM
08-16-2006 12:28 AM
Hi Jacky,
Is this a typo
sprintf(tempX1,"Step.Blocks[%d].TxStr",j-1);
Should it not read
sprintf(tempX1,"Step.Blocks[%d].TxStr", ,j-1);
Regards
Ray Farmer
08-16-2006 12:55 AM
08-16-2006 01:29 AM
Hi,
If your reference to the object is the array then the lookup string will be "" (empty) therefore
08-16-2006 02:15 AM
Hi,
I think your lookup string should have been "RunState.Step.Block" as you are using the SequenceContext as the reference
tsErrChk(TS_PropertySetDimensions (g_seqContextCVI,&errorInfo, "Step.Blocks", 0, "[0]", tempX));
eg
tsErrChk(TS_PropertySetDimensions (g_seqContextCVI,&errorInfo, "RunState.Step.Blocks", 0, "[0]", tempX));
Regards
Ray Farmer
08-16-2006 08:40 AM