AdvancedHMI Software
General Category => Support Questions => Topic started by: Tril on August 14, 2013, 09:49:01 AM
-
I'm using version 3.52. I'm from Canada, we use the comma "," as the decimal separator. When using the keypad on a BasicLabel to enter floating point numbers, it fails in the KeypadPopUp_ButtonClick function if the decimal separator of the regional settings is comma because the keypad inserts a dot in the string.
Below is my quick fix. You could find a better solution and include it in the next version. After "If KeypadPopUp.Value <> "" Then", add :
Dim DecimalSeparator As Char = System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator()
If StrComp(DecimalSeparator, ",") = 0 Then
KeypadPopUp.Value = Replace(KeypadPopUp.Value, ".", ",")
End If
-
The keypad was updated to accommodate this globalization feature. It will be fixed in version 3.53