Author Topic: Relate Label and BasicIndicator Using Code  (Read 862 times)

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Relate Label and BasicIndicator Using Code
« on: March 11, 2025, 02:47:49 AM »
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:

Code: [Select]
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.

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5356
    • View Profile
    • AdvancedHMI
Re: Relate Label and BasicIndicator Using Code
« Reply #1 on: March 11, 2025, 05:53:42 AM »
Make use of the Value changed events and the property values of the BasicIndicator:
Code: [Select]
    Private Sub BasicIndicator1_ValueSelectColor2Changed(sender As Object, e As EventArgs) Handles BasicIndicator1.ValueSelectColor2Changed
        If BasicIndicator1.SelectColor2 Then
            Label1.ForeColor = Color.Red
        Else
            Label1.ForeColor = Color.Green
        End If
    End Sub

joko markono

  • Full Member
  • ***
  • Posts: 142
    • View Profile
Re: Relate Label and BasicIndicator Using Code
« Reply #2 on: March 11, 2025, 09:40:53 PM »
Thanks a lot.
It works.