12-23-2008 01:35 AM
I download an example program which is a LabVIEW VI that creates a new Sequence File, adds a File Global that is a container with two properties, and adds a step that calls a LabVIEW code module (with the new File Global as an output of the code module) in NI page.
Attached file has four VIs:
CreateSequenceFile.vi
AddFileGlobal.vi
AddStep.vi
Module.vi
I have modified AddStep.vi for setting a step property as "hello" characters in Step.Result.ReportText.
But it doesn't work. If someone can know and fix it, please upload the revised AddStep.vi.
Thanks for helps.
Solved! Go to Solution.
12-23-2008 02:34 AM
Change the look up string to Result.ReportText.
Since you are getting the step as property object you need not specify a look up string like Step.Result.ReportText.
Thanks
12-23-2008 03:01 AM
Thanks a lot.
Works well.