So, I have a User Control which is just a TextBox with special formatting rules (there are reasons why I'm not just using a MaskedTextBox...y'know...the sensible solution).

Anyhow, when the user inputs invalid data, they can't click off using the mouse because the TextBox_Validating event cancels like it should and the control can't lose focus until they enter acceptable input. However, if they try to tab off the control, the 'e.Cancel = True' statements are being hit (I know this by using breakpoints) but WinForms is still allowing them to tab off to the other controls, leaving invalid data in the TextBox.

What am I missing to make tabbing act appropriately?

link|improve this question
+1 for not using an evil MaskedTextBox. -100 for not allowing people to leave a text box whenever they want to. Help! I'm suffocating! – Jeffrey L Whitledge Feb 25 '10 at 20:26
feedback

1 Answer

From version 2.0 of the .Net Framework you can use the Form.AutoValidate property to modify the validation behaviour. See the documentation for more information.

I just tested the tabbing issue, and it does not alow me to tab away when the validation fails (e.Cancel = true). When the validation succeeds (e.Cancel = false) everyting is alright.

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.