Hello Jeff Staddon,
Another approach to achieve this might be the following:
private void ultraCalculatorDropDown1_KeyPress(object sender, KeyPressEventArgs e) { if (!char.IsNumber(e.KeyChar)) e.Handled = true; }
You could modify the code to fit your requirements.
Please do not hesitate to contact us if you need any additional assistance.