Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In C#, WinForms how would you stop the following inputs:

0000000000001234556

0000.123456

00000123456.123456

share|improve this question

3 Answers

up vote 3 down vote accepted

If you want 1234556 instead of 000000001234556
Then you can convert it in Int,Double or any other Datatype as you want

2nd option is use the keypress event

private void textBox1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e)
    {
        if (e.KeyCode == ascii of 0)
        {
            e.Handled = false;
        }
    }
share|improve this answer
.....Thank you. – user1920206 Feb 10 at 19:58

You can override the KeyPress event and define a state that, if input is == '0' then ignore, else, wait for a non-zero input. Then change the state to accept 0s.

Since you do not show code, I will not either

share|improve this answer
.....Thank you. – user1920206 Feb 10 at 19:57

You could add an event handler to the KeyDown or KeyPress events. Inside the event handler check if the KeyEventArgs KeyCode is 0 and if the length of your TextBox.Text property is 0. If so set the KeyEventArgs Handled property to false.

share|improve this answer
.....Thank you. – user1920206 Feb 10 at 19:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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