Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a VB.Net Windows application. I am trying to use MaskedTextBox. My mask is 999999, RightToLeft is true, TextAlign is right. It is not letting me enter characters from the right. It is entering them from the left. When I type 1234 and save I get 1234____ when I expect to get ____1234.

Please tell me what I am missing.

share|improve this question

1 Answer

up vote 0 down vote accepted

This worked for me. The code is in the Form's load event.

MaskedTextBox1.Mask = "999999"
MaskedTextBox1.RightToLeft = RightToLeft.Yes
MaskedTextBox1.TextAlign = HorizontalAlignment.Right
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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