FTView SE popup disappears when changing screens

phuz

Member
Join Date
Jun 2008
Location
Mohnton, PA
Posts
1,044
Customer found what I believe to be a bug. I call a popup (On Top) display when an event happens. If they click off of the popup, it is still visible; however, if they hit a navigation button and change screens, the popup disappears. To prove it's actually closed, I tried CNTRL-TAB to switch between any windows and it is not present. Anyone else experience this?
 
If your new displayed screen is configured with the option Replace (in Display Settings...), it will close other opened screens. You have to use Overlay option instead of Replace. The problem with this is that previous screen (not popup) will be still opened in background. You have to add another command to close that specific display.
 
There's no "Always on Top" option. As rleon pointed, you can use the Overlay option in the popup. Then you would need to verify in the next invoked display if the popup is open and move it to the top. You can get a list of the shown displays via VBA.
 
There's no "Always on Top" option. As rleon pointed, you can use the Overlay option in the popup. Then you would need to verify in the next invoked display if the popup is open and move it to the top. You can get a list of the shown displays via VBA.

The problem is if you use an overlay and click off the popup, it goes to the background. To me, this is even worse.
 
Ok, why not make the always on screen also full screen with other part transparent, it will be on top on your normal screen and will mask the navigation buttons, until you don't close the pop-up
 
The problem is if you use an overlay and click off the popup, it goes to the background. To me, this is even worse.
For that reason I suggested to use VBA. You can use a macro to detect if the popup is hidden and send a PushForward command.
 
You can also setup a startup makro. Have a PLC tag to tell if the popup should be open or closed.
If the popup should be open every time operator change the mimic startup macro will call the popup to open.

If it is a big system and a lot of popups then probably more efficient way will be to use VBA.
 
Yah, I have a script stub that I default into all of my popup windows...
On a "Deactivate" event, I fire off a SetFocus and PullForward...

Code:
Private Sub Display_Deactivate()
    Me.SetFocus
    Me.PullForward

End Sub
 

Similar Topics

I have a numeric input field on my HMI. That field is being focused and written to by a macro keyboard so the operator doesn't actually enter a...
Replies
2
Views
751
Hi, I'm trying to display a popup in FTview when a PLC tag reaches 0. Then you have to hit a confirm button to close the popup. I should probably...
Replies
2
Views
1,398
Hi all, i need some help with this little issue. I wanna open a popup in any display when an alarm is triggered. I think this can be do it using...
Replies
5
Views
2,014
I had to restore a application back to 2014. So I lost some features to the HMI. Is there a check box to assign a numeric entry for changing...
Replies
1
Views
1,702
Hello All, I am using FactoryTalk View-SE V5.0 CPR-9. I want to trigger a popup to open at every 11.00PM. I have created Event to trigger the...
Replies
1
Views
4,176
Back
Top Bottom