I have a Textbox and the following code to allow only numbers:
textBox1.Text = Regex.Replace(textBox1.Text, "[^\\d]", "");
Now when I type another key than numbers, the focus goes to the beginning of the Textbox...What do I need to not let this happen?