I\'m looking to accept digits and the decimal point, but no sign.
I\'ve looked at samples using the NumericUpDown control for Windows Forms, and this sample of a Num
e.Handled = (int)e.Key >= 43 || (int)e.Key <= 34;
in preview keydown event of textbox.