I have a bunch of devices some of agilent and some 3rd party which are all connected together, I am writing an experiment in which some of the parameter value within the test flow will always change as a new module replaces the old one for testing. Is there a way to select values from a particular array of values like a config file so that I don't need to change all instance of the values for that particular module and save the file separately?
Thank you
The best way to exchange data is to use the Run a Script block. The script does not have to actually do anything, but it has to exist. You can, for example, make a batch file that simply changes a directory or something else innocuous. But the block allows data to be read in from a file that was intended to be created by the external program. So all you have to do is create that file and reference it in the block. You can then pick values out of the file and put them into variables.
Brian