How to remove Mask in Delphi from a Maskedit

Asked

Viewed 1,008 times

2

I need to remove the stitch and trace from a Maskedit in Delphi. The mask is ##.###-#

1 answer

4


If you are mounting the mask like this: ##. ##-##;1;_
It means he’s literally saving the characters.
To prevent this, use zero instead of 1, like: ##. ##-###;0;_
Thus only the numbers will be considered.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.