How to include the prompt char on masked textbox's Text? I also want to save the prompt char

Example i specify mask: &&&&/&&

And prompt char of _

Then I enter 12 4/5. the program should save it as 12_4/5. Anything left blank should be converted to prompt char when getting the masked Textbox's Text

[EDIT]

Found it, set TaskMaskFormat to IncludePromptAndLiterals

link|improve this question

feedback

1 Answer

You could create a derived class from the MaskedTextBox and then override the Text property. On setting you would find/replace the prompt char with a space and when getting replace the space with the prompt char.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.