FactoryTalk View: Pause Multiple Trends

zacslade

Member
Join Date
Oct 2014
Location
Phoenix, AZ
Posts
84
Hi all,

I am working in Factorytalk View Studio Machine Edition, Release No. 7.00.00 (CPR 9 SR 6).

I have a trend screen which displays 6 different trends, (among other things,) and has room only for one "Pause-Trend" button.

I need to be able to pause all 6 trends simultaneously with the single button. Is this possible? Will I have to use Scripting to achieve this? If so, please advise.

Thanks,
Zac
 
ETA:
To clarify, I said "has room only for one pause trend button". I meant to say that, and "The customer has commanded that there be only one pause trend button for all trends." So rearranging the screen is not the answer I'm looking for here ;)
 
Last edited:
Hey there!
Create a push button named "Pause_button" and add the following VBA code:

Private Sub Pause_button_Released()
Trend1.Scroll = False
...
Trend6.Scroll = False
End Sub
where "Trend1"... are the names of the trends in your display :)
 

Similar Topics

Hello all, I'm having trouble opening an application. After clicking open I'm prompted to login and after putting in username & password it...
Replies
0
Views
50
Has anyone found information on using the variable message file? I keep looking for documentation on how to implement the message file name as a...
Replies
0
Views
59
I have two identical machines running similar HMI projects, the only difference is one is done in FactoryTalk View Version 10 and the other is...
Replies
5
Views
225
Hello, I'm using FactoryTalk View ME V10. I created a valve as a global object with multiple parameters and when the object is being used at the...
Replies
2
Views
152
Hello all, I was modifying an HMI in factory talk and went to change a go to display button using the ... to select from a list as I had done...
Replies
4
Views
204
Back
Top Bottom