vote up 0 vote down star

Hi everyone. Compelete noob working on my first app in C#. Here is what I am trying to do....

A user is going to enter an "ID" into a text box, all numbers. I have been trying to figure out how to trap a leading zero in the ID, for instance:

5031 is accepteble for ID 0827 not what we want

Basically, zero cannot be the leading number in the series. I thought, perahps this could be trapped via an index but I am stumped. Any thoughts????

-Confused Trapper

flag
Could 0 be a valid ID, or must it be 4 digits (or some range of digits)? – SwDevMan81 Jul 7 at 3:05
Thanks for all the feedback so far, it has been very helpful already. I should have noted, the range of the ID is open. It can be 3 digits, 4, even more. scwagner...I do want to black 0 as the leading digit altogether as soon as possible. – INeedChineseFood Jul 7 at 12:12

4 Answers

vote up 0 vote down

If you like to enter just number into a box, just use a NumericUpDown instead of a TextBox. In your case it seems that your ID has always four digits. So set the minimum value to 1000 and the maximum to 9999 (or greater or to Decimal.MaxValue).

link|flag
vote up 0 vote down

Is it your desire to block the 0 as they key it in, or to perform the validation after they have navigated away from the field? The problem with the solutions watching keypresses is they don't monitor the contents if an invalid value is pasted in from the clipboard.

Take a look at MaskedTextBox and OnValidating within that control and see if that will solve your problem for you.

link|flag
vote up 1 vote down

How about something like... may need to tweek it.

protected override void OnKeyPress(KeyPressEventArgs e)
{
    if( this.SelectionStart == 0 && e.KeyChar == (char)'0')
   {
        e.Handled = true;
        return;
    }
 }
link|flag
vote up 0 vote down
protected override void OnKeyDown( object sender, KeyEventArgs e )
{
    e.Handled = ( ( this.SelectionStart == 0 ) && ( e.KeyCode == Keys.D0) )
}
link|flag

Your Answer

Get an OpenID
or

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