So I have a BasicIndicator1 (with PLC address) with green background.
Trying to make the Label1 (don't want to add same address again here) become red like this in my timer:
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
If BasicIndicator1.BackColor=Color.GREEN Then
LabelMCP1Temp.ForeColor = Color.Red
End If
End Sub
It doesn't work. Can someone please help.