Fix checkbox label

This commit is contained in:
Jonathan Jenne 2022-06-29 16:09:07 +02:00
parent 7ef0e493fb
commit e9db58f2cf

View File

@ -367,7 +367,12 @@ Public Class frmMonitor
Select Case oParam.DataType
Case DataTypeEnum.Boolean
oControl = New CheckEdit()
Dim oCheckbox = New CheckEdit With {
.Text = oParam.Title
}
oControl = oCheckbox
Case DataTypeEnum.Date
oControl = New DateEdit()