1
Feature Request / tooltip
« on: July 08, 2019, 10:17:19 PM »
I was asked this today , so its got me wondering , Is there a way to make a live plc address value show up in the tool tip
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
'*****************************************
'* Property - Address in PLC to Link to
'*****************************************
Private m_PLCAddressClickLeft As String = ""
<System.ComponentModel.Category("PLC Properties")> _
Public Property PLCAddressClickLeft() As String
Get
Return m_PLCAddressClickLeft
End Get
Set(ByVal value As String)
If m_PLCAddressClickLeft <> value Then
m_PLCAddressClickLeft = value
'* When address is changed, re-subscribe to new address
SubscribeToComDriver()
End If
End Set
End Property
'*****************************************
'* Property - Address in PLC to Link to
'*****************************************
Private m_PLCAddressClickRight As String = ""
<System.ComponentModel.Category("PLC Properties")> _
Public Property PLCAddressClickRight() As String
Get
Return m_PLCAddressClickRight
End Get
Set(ByVal value As String)
If m_PLCAddressClickRight <> value Then
m_PLCAddressClickRight = value
'* When address is changed, re-subscribe to new address
SubscribeToComDriver()
End If
End Set
End Property