Hi there
I want to change the background color of a label using the following code.
Sub Process_Globals
Private fx As JFX
Private MainForm As Form
Dim ready Is Boolean = False
Private ReadyLb As Label
End Sub
Sub CheckReady As Boolean
If ready = True Then
ReadyLb.Color = RGB(111,242,142)
End If
End Sub
I want to change the background color of a label using the following code.
Sub Process_Globals
Private fx As JFX
Private MainForm As Form
Dim ready Is Boolean = False
Private ReadyLb As Label
End Sub
Sub CheckReady As Boolean
If ready = True Then
ReadyLb.Color = RGB(111,242,142)
End If
End Sub