I use masked edit box control in my application. When user click masked edit box, cursor locate in middle of control or end of control. users have to use cursor key to bring cursor front of control. Is there any way I can set cursor location in front of control when user click the control?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

set the SelectionStart Property for MaskedTextBox

private void maskedTextBox1_Click(object sender, EventArgs e)
{
    maskedTextBox1.SelectionStart = 0;
}
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.