maskedtextbox - Cursor control using Masked Text boxes in C# -


In my app there are several input fields in C # that I need to capture.

I need them to be of specific sizes and types and I have used the masked text box for them.

I have names that 20 lessons are the fourth long, and there is a certificate number which is 5 numeric characters with the previous one and so on.

It works fine, apart from that, I click with a mouse on a field, the cursor is not in the beginning of the field, or is not at the end of any input text.

Is there a way to allow a masked text box to be used or do I need to use the normal text box and manually verify all the fields?


Comments