11-29-2016 04:42 AM
@NemoChen wrote:
[...]Does it make sense?
No, it does not make sense. Conditional Disable Structure is a set of instructions for the LV compiler. So changing symbols REQUIRES a recompile of the VI. If you fail to do this, changing symbols will not affect VI execution.
What you are looking for is a simple case structure and passing a parameter "as symbol" to select which case you want to execute.
11-29-2016 04:45 AM
Yes, you just gave me another easy way to solve it.
thank you!
11-29-2016 07:43 AM
Another, "better" option (but requires more LV knowledge) would be implementation of a class based abstration layer.
TS nowadays can directly call LV dynamic dispatches, so a class based abstraction replaces the case structure and the additional parameter.