Hi,
My purpose is to create my own property loader. I successfully created a LabVIEW VI wich ables me to select a variable category (locals, parameters, fileglobals, stationglobals) with the expression edit control and it created an INI file with all my variable names and values.
Ok, now I wanted to created a custom tool of it. So when I create a new Teststand sequence, I can select Tool->LoadMyVariables and it creates an INI file of my current sequence file (Let's call WORKING SEQUENCE FILE).
To create this tool, I put my LabVIEW VI in another Teststand sequence file(Let's call TOOL SEQUENCE FILE). that I call in my custom tool.
The problem is that my LabVIEW VI need "ThisContext" (sequence context ) in input and when I use my tool from my WORKING SEQUENCE FILE: it runs the TOOL SEQUENCE FILE and i cannot access to the ThisContext of my WORKING SEQUENCE FILE anymore.
This is why my question is: Is there a way to send "ThisContext" from a sequence in a sequencefile to a sequence in antoher sequence file? (using Teststand custom tool)