validating-event

Why is my validating event not firing in C#?

I have a form that is dynamically created. It is a winForms application. This form is just a menu and a series of textboxes and labels. For the sake of this example, you can ignore the labels. My problem is: When I edit stuff in the textboxes, then click the menu to issue "Save", the text from the last text box still hasn't issued its...

Tabbing off control bypasses validation .NET

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 los...