04-16-2010 04:41 PM
04-16-2010 05:11 PM
Post a picture of your code or attach the VI. It will be easier to help you if I see the code.
Dan07
04-16-2010 05:58 PM
I don't think you can have the same instance of controls and indicators on separate tabs. Two options:
1. Create separate controls on each tab. Put code such that if any control or indicator in the list is changed on any tab, the other similar ones get changed programatically. You can do this with an event structure and local variables or property nodes. Lots of programming.
2. Create a section apart from the tabs that will hold common controls and indicators. Have them always visible, either above the tabs or below, or to the side. No extra coding required.
04-16-2010 06:49 PM
tbob wrote:I don't think you can have the same instance of controls and indicators on separate tabs. Two options:
1. Create separate controls on each tab. Put code such that if any control or indicator in the list is changed on any tab, the other similar ones get changed programatically. You can do this with an event structure and local variables or property nodes. Lots of programming.
I don't think that it will be a lot of programming. For example: if he has 5 controls and want to keep all of them synchronized, with only one Case of the Event Structure he can do the job, setting the 5 controls to trigger that Case when "Value Change" and use the Event Node "NewVal" to write the same value for all controls (including the control that triggered the event, but with a code this size it will not be a big deal to write the information a again to the same control).
Thanks
Dan07
04-16-2010 10:45 PM