1
Support Questions / Re: Change Text based on boolean Value (BasicLabel)
« on: March 09, 2021, 03:21:54 PM »
Thank you for the fast response.
And congratulations for your work.
Do you have any little example ou to manipulate de code of basiclabel?
Would this works?
Private Sub BasicLabel(sender As Object, e As EventArgs) Handles BasicLabel1.ValueChanged
If BasicLabel1.PLCAddressValue = False Then
BasicLabel1.Text = "Texto"
Else
BasicLabel1.Text = "Texto 34"
End If
End Sub
More one time.
Thank you
And congratulations for your work.
Do you have any little example ou to manipulate de code of basiclabel?
Would this works?
Private Sub BasicLabel(sender As Object, e As EventArgs) Handles BasicLabel1.ValueChanged
If BasicLabel1.PLCAddressValue = False Then
BasicLabel1.Text = "Texto"
Else
BasicLabel1.Text = "Texto 34"
End If
End Sub
More one time.
Thank you