开发者

Validation on a single DataGridView column

开发者 https://www.devze.com 2023-04-10 09:24 出处:网络
How can I perform validation on a particul开发者_如何学JAVAar DataGridViewTextBoxColumn column in my DataGridView, so that a user is required to enter a value into it?i think you are looking for datag

How can I perform validation on a particul开发者_如何学JAVAar DataGridViewTextBoxColumn column in my DataGridView, so that a user is required to enter a value into it?


i think you are looking for datagrid view text box column validation right ? if so would you pls take a look at this link

http://www.codeproject.com/Questions/93691/Validations-inside-DataGridView-TextboxColumn.aspx

EDIT 1:

you Can use this solution but it validates only numbers ,or if you want to validate the text you can change the code..

private void dataGridView1_CellValidating(object sender, DataGridViewCellValidatingEventArgs e)
{
    DataGridViewTextBoxCell cell = dataGridView1[2, e.RowIndex] as DataGridViewTextBoxCell;

    if (cell != null)
    {
         if (e.ColumnIndex == 2)
         {
             char[] chars = e.FormattedValue.ToString().ToCharArray();
             foreach (char c in chars)
             {
                  if (char.IsDigit(c) == false)
                  {
                           MessageBox.Show("You have to enter digits only");

                           e.Cancel = true;
                           break;
                    }
              }
          }
     }
}

NOTE: this code is not tested ..

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号