Imports Infragistics.Win.UltraWinMaskedEdit Imports Infragistics.Win.UltraWinEditors ... Private Sub LimitingtheNumberofInputCharacters_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load Me.UltraNumericEditor1.NumericType = NumericType.Double Me.UltraNumericEditor1.MaskInput = "$999,99#.##" Me.UltraNumericEditor1.MaskDisplayMode = MaskMode.IncludeBoth End Sub