Guest User

Untitled

a guest
Jun 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. void dataGridView1_DataError(object sender, DataGridViewDataErrorEventArgs e)
  2. {
  3. e.Cancel = true;
  4. }
  5.  
  6. // Add code in user interface
  7. dataGridView1.DataError +=
  8. new DataGridViewDataErrorEventHandler(dataGridView1_DataError);
Add Comment
Please, Sign In to add comment