03-26-2015 04:20 AM
Is there a way to set the value of parameters of a sequence call with a vi with the sequence context in the sequence which is called? If not from the same subseqence maybe with a vi in the mainsequence?
Solved! Go to Solution.
03-26-2015 09:15 AM
In your VI, I think you should be able to set the value of Step.TS.SData.ActualArgs.paranumber.Expr to the desired parameter value. (This property is visible in the Variables pane only if you have configured the Station Options to show hidden properties). Note that the Step object should refer to your sequence call step. Also, keep in mind that that property represents an expression, so if you want to pass the value 33, you must put the value in quotes ("33").
Jeff
03-27-2015 02:35 AM - edited 03-27-2015 02:44 AM
Hello Rokot
in the VI you can do this
also attached a demo for this
If i have misunderstood something or you need addtional information please let me know.
04-01-2015 03:39 AM - edited 04-01-2015 03:42 AM
@jsiegel: Can you make an example? I dont know how exactly acces to this value.
@duffy: No, this only changes the value in the subsequence. I want to set the value of the parameter before in the module pane in the mainsequence.
04-01-2015 06:29 AM - edited 04-01-2015 06:30 AM
ok, it works, thanks jsiegel.