Is there an easy way to make entering numeric value with decimal point freely without masking? I want the editor to only allow numbers and possible a decimal point, but without having any precisions and decimal masking like ____.____ in the editor? Thanks.
Which editor are you referring to? It seems to me that you would probably use UltraTextEditor and then handle the KeyDown and/or KeyPress events to prevent the user from entering anything other than numbers or a decimal point. You would have to decide how to deal with pasting into the control, too, of course.
Thanks for the reply. Any idea how to handle to the pasting into the control?