I have a MaskedTextBox
in my Winforms application. I need a multiline mask on it, f.e:
"999999\r\n
999999\r\n
999999\r\n
00/00/0000"
I read the msdn documentation and was suprised to see that there is no "new line"or something like that.
I know that i can write my own user control to fix this issue, but a masked textbox would be an easier solution. So i have 2 Questions: Is there a way to add a new Line to a mask? If not, why does the Control supports multiline - isnt that useless?
Thanks in advance