Click here to Skip to main content
15,867,762 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have 6 columns contain one gridview where in 3rd column I would like to allow only numbers no other special or junk characters .

What I have tried:

private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)
        {
            e.Control.KeyPress -= new KeyPressEventHandler(polNoDataGridViewTextBoxColumn_KeyPress);
            if (dataGridView1.CurrentCell.ColumnIndex == 3) //Desired Column
            {
                TextBox tb = e.Control as TextBox;
                if (tb != null)
                {
                    tb.KeyPress += new KeyPressEventHandler(polNoDataGridViewTextBoxColumn_KeyPress);
                }
            }
        }

        private void polNoDataGridViewTextBoxColumn_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
            {
                e.Handled = true;
            }
        }


Please help me on this how can do it
Posted
Updated 13-Jun-22 22:46pm

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900