DataGridViewDataErrorEventArgs Class
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration Public Class DataGridViewDataErrorEventArgs Inherits DataGridViewCellCancelEventArgs 'Usage Dim instance As DataGridViewDataErrorEventArgs
public class DataGridViewDataErrorEventArgs extends DataGridViewCellCancelEventArgs
public class DataGridViewDataErrorEventArgs extends DataGridViewCellCancelEventArgs
Handling the DataError event lets you handle exceptions thrown by code outside your control (for example, by an external data source). Use the Context property to determine the state of the DataGridView at the time of the exception. Use the Exception property to retrieve the exception data. If you want to handle the exception by additional event handlers, set the ThrowException property to true.
The following code example demonstrates how to respond to information provided by the DataGridViewDataErrorEventArgs class.
Private Sub DataGridView1_DataError(ByVal sender As Object, _ ByVal e As DataGridViewDataErrorEventArgs) _ Handles DataGridView1.DataError MessageBox.Show("Error happened " _ & e.Context.ToString()) If (e.Context = DataGridViewDataErrorContexts.Commit) _ Then MessageBox.Show("Commit error") End If If (e.Context = DataGridViewDataErrorContexts _ .CurrentCellChange) Then MessageBox.Show("Cell change") End If If (e.Context = DataGridViewDataErrorContexts.Parsing) _ Then MessageBox.Show("parsing error") End If If (e.Context = _ DataGridViewDataErrorContexts.LeaveControl) Then MessageBox.Show("leave control error") End If If (TypeOf (e.Exception) Is ConstraintException) Then Dim view As DataGridView = CType(sender, DataGridView) view.Rows(e.RowIndex).ErrorText = "an error" view.Rows(e.RowIndex).Cells(e.ColumnIndex) _ .ErrorText = "an error" e.ThrowException = False End If End Sub
System.EventArgs
System.ComponentModel.CancelEventArgs
System.Windows.Forms.DataGridViewCellCancelEventArgs
System.Windows.Forms.DataGridViewDataErrorEventArgs
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.