03-03-2016 03:25 AM
Hi, demo.vi can move controls using mouse click event and changing layer order of front panel controls using shortcut menu. I want to save and load controls positions and layer orders programmatically, how to save and load positions and orders?
I have attached my vi,
Can anyone help?
03-03-2016 04:00 AM
Use property nodes to get the values of these properties (e.g. position, z-index) and write them to a configuration file on exit. When your VI starts, load them back from the configuration file. You can use the Ctrls[] property of a VI Pane to get an array of all controls/indicators.
03-03-2016 04:11 AM
03-03-2016 04:38 AM