I know there is masked textbox component for C#, but what I need is to create masked text box which requires entered text in format: LLL/LLL but when I enter such mask into Mask property in preview and mask I see separator “.” but not “/” as I want to have. Any help?
Thanks
I know there is masked textbox component for C#, but what I need is
Share
The / character is the date separator character in the mask. What you’ll actually get depends on your culture preferences. To get a literal
/you’ll have to escape it with a\. Like this:Don’t use the @ when you use the Properties window.