1
Support Questions / Re: DataSubscriber vs DataSubscriber2
« on: November 11, 2018, 07:17:33 PM »
So then something as simple as:
_PLCController = New AdvancedHMIDrivers.EthernetIPforCLXCom
_PLCController.IPAddress = _Settings.PLCIPAddress
MyTag1SubScribeID = _PLCController.Subscribe("MyTag1", 1, 0, AddressOf ProcessMyTag)
MyTag2SubScribeID = _PLCController.Subscribe("MyTag2", 1, 0, AddressOf ProcessMyTag)
Even if there is going to be 50+ Subscriptions? If I point them all to "ProcessMyTag" can I then use the e.PLCAddress to get the source of the changed data (MyTag1 or MyTag2)?
And then just so I'm clear, setting a poll rate of 0 will cause it to fire anytime the data is changed, correct?
_PLCController = New AdvancedHMIDrivers.EthernetIPforCLXCom
_PLCController.IPAddress = _Settings.PLCIPAddress
MyTag1SubScribeID = _PLCController.Subscribe("MyTag1", 1, 0, AddressOf ProcessMyTag)
MyTag2SubScribeID = _PLCController.Subscribe("MyTag2", 1, 0, AddressOf ProcessMyTag)
Even if there is going to be 50+ Subscriptions? If I point them all to "ProcessMyTag" can I then use the e.PLCAddress to get the source of the changed data (MyTag1 or MyTag2)?
And then just so I'm clear, setting a poll rate of 0 will cause it to fire anytime the data is changed, correct?