How do I just let the users edit without a mask?
If you don't want the currency mask, why not just use an UltraNumericEditor or UltraMaskedEdit, or even an UltraTextEditor? What kind of functionality do you need?
-Matt
I am looking to edit numbers without having to be converting everything in C#. So perhaps the numberic edit, but that also has masking (is default float rather than decimal). They will be using multiple currencies in the same session, entereing one invoice in one currency, one in another. I want to deal with currency without symbols and as anyone who has done a lot of data entry applications where the users are busy, the masks really make data entry more difficult, not easier.
I want my user to enter 100 without typing through lines or other masking fields and I then can format to #,###.00 and do other things without having to do multiple conversions in and out of strings.
So the simple question remains: can you use the currency editor or the numeric editor with no masking characters showing?
thanks.