• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn chỉ cho phép nhập số trong input textbox C#

Admin

Well-Known Member
Staff member
Administrator
Chào các bạn, hôm nay tuoitreit..vn xin chia sẻ code chỉ cho phép nhập số vào khung textbox trong C#
49814854263_c50b113e12_o.png

Bạn dán code sau nhé
Code:
private void khungNhap_TextChanged(object sender, EventArgs e)
{
    if (System.Text.RegularExpressions.Regex.IsMatch(khungNhap.Text, "[^0-9]"))
    {
        MessageBox.Show("Vui lòng chỉ nhập số thôi nhé bạn");
        khungNhap.Text = khungNhap.Text.Remove(khungNhap.Text.Length - 1);
    }
}
Với code trên nếu người dùng copy ký tự quá dài mà không phải là số thì mỗi lần nhấn chuột sẽ xóa 1 ký tự
Chúc bạn thành công!
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top