- In Solution Explorer expand down the AdvancedHMIControls project
- Expand down the Controls Folder
- Right Click BasicLabel.vb and select View Code
- Go to Line 294 and look for the code:
Public Enum BooleanDisplayOption
TrueFalse
YesNo
OnOff
OneZero
EnabledDisabled
AutoManual
End Enum
- Add Additional Options
- Then go to line 551 and look for this line of code:
If (String.Compare(m_Value, "True", True) = 0) Then
- Follow the pattern and add If=Then for the options you added above