46
Open Discussion / Re: New Version 3.99v Now Available
« on: February 25, 2017, 03:23:59 AM »
Can you explain function of new component SimpleWebServer?
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.
Private Sub DataSubscriber21_DataChanged(sender As Object, e As Drivers.Common.PlcComEventArgs) Handles DataSubscriber21.DataChanged
If e.PlcAddress = "D15006" & e.Values(0) = "1" Then
Label1.Text = "Alarm 1"
ElseIf e.PlcAddress = "D15006" & e.Values(0) = "2" Then
Label1.Text = "Alarm 2"
End If
End Sub