08-27-2014 03:08 PM
So I'll lay out the basic outline of my project. Right now I have a tab control which scrolls through each of its tabs 1 second at a time. It does this until the user presses the pause button, the the scrolling stops and the user sees the tab that was onscreen right at the moment of pressing pause. Now what I want to do is have a separate tab control which comes up automatically once the user presses pause instead of the 1st tab control just stopping as it does now.
Or alternatively is there a way to programmatically tell the tab control to stop on a specific tab once pause is pressed? Even turn on and/or off the tab labels upon pressing pause? I've been informed I can accomplish this by way of using "nodes" I think is the term, but have yet to successfully implement anything.
08-27-2014 03:28 PM
Let's keep this in the other thread. http://forums.ni.com/t5/LabVIEW/Revision-How-to-make-tab-control-stop-on-a-specific-page-upon/td-p/2...
It is difficult to give you any help without seeing your code. So post your latest VI in the other thread.
The "nodes" you are talking about refer to property nodes.
It seems like you are trying to program a very complicated and unfriendly user interface. What is it you are really trying to do?
08-28-2014 01:19 AM
Hi,
Please check attached VI, it may help you!!!
08-28-2014 04:48 AM
08-28-2014 05:48 AM
@ShogunOrta wrote:
So I'll lay out the basic outline of my project. Right now I have a tab control which scrolls through each of its tabs 1 second at a time. It does this until the user presses the pause button, the the scrolling stops and the user sees the tab that was onscreen right at the moment of pressing pause. Now what I want to do is have a separate tab control which comes up automatically once the user presses pause instead of the 1st tab control just stopping as it does now.
Or alternatively is there a way to programmatically tell the tab control to stop on a specific tab once pause is pressed? Even turn on and/or off the tab labels upon pressing pause? I've been informed I can accomplish this by way of using "nodes" I think is the term, but have yet to successfully implement anything.
On Pause value change-event, change tab. To lock, either disable tab control (which'll also disable its controls), keep track of pause status to return to this tab if changed (in the tab change event) or place a transparent image over the tab selectors (which'll stop attempts of clicking them).
/Y