03-16-2020 03:59 PM
I don't understand why I should keep the container visible. I really don't want that. I have a full screen of controls with no room for this so I put it on top of everything when and if I need to edit one of my scripts.
03-16-2020 04:22 PM - edited 03-16-2020 04:24 PM
Ah, OK. Your choice.
Typically we advise against overlapping front panel elements because it severely hurts redraw performance and is taxing the UI thread. Maybe you can do a dialog style popup subVI instead?
And I still think all you need is a single string control and keep the various version e.g. in a string array. You can dynamically fill the control with the correct content, no property nodes needed!
03-17-2020 07:29 AM
These strings are actually rather long TSP scripts for controlling test equipment. I wonder if I should just load them in from a file instead. Then I wouldn't need to hide them.
03-17-2020 11:22 AM - edited 03-17-2020 11:22 AM
@RHutchings wrote:
These strings are actually rather long TSP scripts for controlling test equipment. I wonder if I should just load them in from a file instead. Then I wouldn't need to hide them.
Since you had them as controls, I assumed that the operator is supposed to edit them at any time. If they are preformed and irrelevant to the user, they should only live on the diagram.
03-17-2020 03:52 PM
And as I already said, you really only need one string indicator to show the selected script if needed.