AdvancedHMI Software
General Category => Open Discussion => Topic started by: DavidSr on March 23, 2022, 10:47:34 PM
-
Hello all,
This forum has been super dead so I hope one of you former regulars visits from time to time...
I looked through the forum but don't think what I found is what I want - but maybe so I would like some guidance.
I would like to know if there is a way to have a new form/page open as a pop up screen in the middle of the main form when activated by a PLC bit. It will be used to show more information about a particular item such as motor detail, Run time, current etc. rather than putting it all on the motor start stop panel. then have a control to reset the bit.
I currently use bits to display panels and gauges on top of the main form so maybe that is the best or at least sufficient way of doing it. Adding a PLC VISIBLE to a Group BOX like for the Group Panel would help. Would that be your recommendation to keep doing it that way? Rather not go to a different page, a Pop up would be perfect. I wish I had time to learn VB but I really don't but I don't mind editing and testing.
Thank you.
-
- In Solution Explorer, Right Click The AdvancedHMI project and select Add->Form (Windows Form)
- Name the form to something like Popup, then click Add
- Right click the form and slect View Code
- Copy this code:
'*******************************************************************************
'* Stop polling when the form is not visible in order to reduce communications
'* Copy this section of code to every new form created
'*******************************************************************************
Private NotFirstShow As Boolean
Private Sub Form_VisibleChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.VisibleChanged
'* Do not start comms on first show in case it was set to disable in design mode
If NotFirstShow Then
AdvancedHMIDrivers.Utilities.StopComsOnHidden(components, Me)
Else
NotFirstShow = True
End If
End Sub
- On the MainForm, add a DataSubscriber
- Set PLCAddressValue to the bit that will trigger the popup
- Double click the DataSubscriber
- Enter this code:
If String.CompareOrdinal(e.Values(0), "True", True) = 0 Then
Popup.Show()
Else
Popup.Hide()
End If
-
Great to see "you Popping up" here Archie , and I didn't even have to write any code :-)
Thank you! I will try this today hopefully, DataSubscriber is the control I was looking at but was not sure how to use it.
Thank you! Have blessed and restful day!David