08-29-2002 12:50 AM
08-30-2002 04:41 PM
06-11-2010 01:01 AM
Hi Shannon,
this is interesting.
but i could not get the same sequencefile name programatically in my sequence.
how can i get this?
I have used NameOf(Runstate.SequenceFile). It returns Empty string.
06-11-2010 01:11 AM
NameOf(RunState.SequenceFile) doesn't work because there isn't a Name property for SequenceFile. Checkout the TestStand Help for SequenceFile to find it's valid Properties.
Follow the example given by Shannon.
Regards
Ray Farmer
06-11-2010 01:19 AM
Hi Ray,
nice to see your quick reply.
Yes. i have seen the properties and found that "name is not among them"
But i just blindly followed the below link
http://digital.ni.com/public.nsf/allkb/AC5008A6FC55616F86256BBC005B61D8
where a solution says it is possible to get the Sequence file Name.
Still i can figureout the expression to get this. Can u help me with that?
06-11-2010 03:18 AM
Hi,
Locals.name = RunState.SequenceFile.AsPropertyObjectFile.DisplayName
This should return the filename part of SequenceFile.Path which is the full path including filename of the current sequence file.
Regards
Ray Farmer