12-26-2010 02:49 AM
Hello,
I use CVI to run a teststand sequence. In that CVI function I need to know the "measurement result" and "unit" of the last NumericLimitTest step. I know that by using the function TS_PropertyGetValString and TS_PropertyGetValNumberI can get different parameters. What is the Lookup String that I should use to get the measurement result and unit of the last step?
He Jia Ying
12-26-2010 11:17 PM
Hi~
The follow one document and one example detail the related information. Hope these helps.
http://zone.ni.com/devzone/cda/tut/p/id/2700
http://decibel.ni.com/content/docs/DOC-11447
Xiaojian Wang
12-27-2010 09:48 AM
sorry, I can't find the lookupstring for "measurement result" and "unit" in these samples.
12-27-2010 09:56 AM
"RunState.PreviousStep.Result.Numeric"
"RunState.PreviousStep.Result.Units"
If you set a breakpoint in your execution and look at the variables window you can see what sorts of things are available at runtime.
Hope this helps,
-Doug
12-27-2010 06:33 PM
It work. Thank you very much!