C# Input validation for a Textbox: float - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:53:36Zhttp://stackoverflow.com/feeds/question/828546http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/828546/c-input-validation-for-a-textbox-float0C# Input validation for a Textbox: floatechorhyn2009-05-06T08:14:50Z2009-05-06T08:51:49Z
<p>This supposedly easy task gave me some headache. I simply want to let the user enter any text that succeeds <code>float.TryParse</code> into a Textboxish control.</p>
<p>I could use a normal TextBox and check the Text in some btnOK_Click, but this is obviously lame. Also, there is a nice built-in MaskedTextBox control, but I failed to set it's mask to be equal to <code>float.TryParse</code>. Also, it seems to check for validity only when a focus change occurs.</p>
<p>Digging around on the net brought some interesting ideas, but none of them as nice as I would like.</p>
<p>How did you solve this problem? Did I simply miss an obvious solution, or do I have to implement this functionality myself?</p>
<p>I'm aware of a few similar threads on SO, but there was no feasible solution to be found.</p>
<p><b>Update:</b> Yes, WinForms.</p>
http://stackoverflow.com/questions/828546/c-input-validation-for-a-textbox-float/828558#8285585Answer by Eoin Campbell for C# Input validation for a Textbox: floatEoin Campbell2009-05-06T08:20:06Z2009-05-06T08:30:45Z<p><strong>Edit</strong></p>
<p>Well that makes it alot easier... Just add a <code>Validating</code> Event Handler to your textbox
and do the <code>TryParse</code> in the code behind. If its invalid, prompt the user as such.</p>
<p>Validating will fire when the user is finished typing and moves focus from the TextBox so if you need to do on the fly checking, you could handle the TextChanged or on of the KeyPress/KeyUp Event handlers instead</p>
<p><strong>Original</strong></p>
<p>Is this in asp.net or winforms/wpf </p>
<p>If its asp.net, you could use a combination of <code>RegularExpressionValidator</code> (to account for comma seperation, 1 decimal point, etc...) and a <code>RangeValidator</code> to set the min/max values for a float.</p>
<p>Aside from that, the only way to guarantee it would be to wrap the textbox in an updatepanel, stick a CustomServerValidator on it, and in the server validate function, do a <code>TryParse</code> on the <code>TextBox.Text</code> value, if it succeeds, IS VALID, if it fails, NOT VALID</p>
http://stackoverflow.com/questions/828546/c-input-validation-for-a-textbox-float/828687#8286871Answer by rein for C# Input validation for a Textbox: floatrein2009-05-06T08:51:49Z2009-05-06T08:51:49Z<p>Be careful using <code>Validating</code> and validating to false. You might find that, unless you enter valid data, you can't move focus off the textbox which is a really big usability pain.</p>
<p>I solve this by simply trying a <code>TryParse()</code> on <code>LostFocus</code> and if the TryParse fails I color the textbox background a reddish tint to make it obvious that something is wrong.</p>