I need to remove the dot and dash of a MaskEdit in Delphi. The mask is ##. ### - ##
I need to remove the dot and dash of a MaskEdit in Delphi. The mask is ##. ### - ##
If you are mounting the mask like this: ##. ### - ##; 1; _
Home
That means he's saving the characters literally.
To prevent this, use zero instead of 1, like this: ##. ### - ##; 0; _
Home
That way only numbers will be considered.