1
Answer

how to made validation in checkbox?

Photo of Rowshan Ali

Rowshan Ali

12y
1.4k
1
 hello dear
i am in problems to create validation that if i dont write number i write charecter then its show error that " only number are allowed" and user can't move textbox in next textbox.

if any body help me best regurds..

Answers (1)

0
Photo of Satyapriya Nayak
NA 39.3k 13.3m 12y
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Number_Character_validate_Csharp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            // Number Validation(only Number allowed)
            if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "\\d+"))
            {
                e.Handled = true;
            }
           
        }
    }
}

Accepted