private void txt_moo_KeyPress(object sender, KeyPressEventArgs e)
{
int cInt = Convert.ToInt32(e.KeyChar);
if ((int)e.KeyChar >= 48 && (int)e.KeyChar <= 57 || cInt == 8 )
{
e.Handled = false;
}
else
{
e.Handled = true;
}
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น