Posted 11 January 2018, 4:51 pm EST
I’m using de c1TextBox control for formating and validating an special string with the format “99-9999999-9”.
If the user enters less caracters as specified in the edit mask, like “12345” I’m obtaining a value like “12-345-”, but I need to be stored as “12-345____-_”
I’tryed the properties as follows:
- EditMask = “99-9999999-9”
- SaveBlanks = True
- StoreEmptyChar = “_”
- SkipOptional = False
But it still returns the incomplete string.
Any suggestions?
Thanks in advance!