You are on page 1of 1

private void txt_Cantidad_KeyPress(object sender, KeyPressEventArgs e) { if (((e.KeyChar) < 48 && e.KeyChar != 8) || e.KeyChar > 57) { MessageBox.

Show("Slo permite numeros"); e.Handled = true; } }

You might also like