How do I just let the users edit without a mask?
Well you won't be able to have *unlimited* numbers because there is a maximum value for the DataType associated with the editors, and I *think* that by using all n's as your mask you might be causing the editor to use a numeric type for the value. I'm pretty sure that you'll have to enter the mask for the maximum value that you want to allow.
-Matt
This is great.
"nnn,nnn.nn" as the MaskInput, the user can only enter numbers up to 999,999.99.
I guess my brain was fried on Friday, since I couldn't think of this or I was just completely misreading your question, but you could certainly just change the PromptChar property to null at design-time, which should accomplish this.
Yes, that is what I was doing, but my users hate the line and all masls. I guess you are saying that you cannot have NO Mask, even when the mask field is empty? Perhaps this can be a feature request for future version on this and the numeric control. Thanks.
You could certainly specify the mask yourself (i.e. "nnnn.nn"), which will only show the _____ where the entry would be, and will not show the currency symbol. You can then use the FormatString property to show it as you see fit.