Private Sub TextBox1_Change()
TextBox1 = Replace(TextBox1, ".", ",")
End Sub
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
KeyCode = IIf(KeyCode = 110, 188, KeyCode)
End Sub
Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
KeyAscii = IIf(KeyAscii = 44, 46, KeyAscii)
End Sub