Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
640
UltraNumericEditor and others
posted

Hi, I have a UltraGrid. One Column has as Editorcontrol an UltraNumericEditor.

This UltraNumericEditor is used like this:

Dim anz As Integer = 3

Dim dez as Integer = 4

uneWerte.MaskInput = "{double:-" & anz & "." & dez & ":c}"

uneWerte.DisplayMode = UltraWinMaskedEdit.MaskMode.IncludeLiterals

uneWerte.NumericType=Double

myUltraGrid.DisplayLayout.Bands(0).Columns("w").EditorControl = uneWerte

Now I have to change this so that in that column could also be a points "." or three points "..." or "-". Which control have I to use and how should the MaskInput look like? I don't know how to say that either numerics OR this ".", "...", "-" are allowed...??????

Thank you so much!!!!