Ví dụ bạn chỉ cho phép nhập tên tài khoản bằng chữ. Không cho phép nhập số bạn dùng sự kiện sau CODE: Select All private void txtdangnhap_KeyPress(object sender, KeyPressEventArgs e) { if (Char.IsDigit(e.KeyChar)) e.Handled = true; } Ngược lại CODE: Select All private void txtdangnhap_KeyPress(object sender, KeyPressEventArgs e) { if (!Char.IsDigit(e.KeyChar)) e.Handled = true; }