DataGridViewDataErrorEventHandler Delegate
Assembly: System.Windows.Forms (in system.windows.forms.dll)
'Declaration Public Delegate Sub DataGridViewDataErrorEventHandler ( _ sender As Object, _ e As DataGridViewDataErrorEventArgs _ ) 'Usage Dim instance As New DataGridViewDataErrorEventHandler(AddressOf HandlerMethod)
/** @delegate */ public delegate void DataGridViewDataErrorEventHandler ( Object sender, DataGridViewDataErrorEventArgs e )
JScript supports the use of delegates, but not the declaration of new ones.
Parameters
- sender
The source of the event.
- e
A DataGridViewDataErrorEventArgs that contains the event data.
The DataError event is raised when an error occurs during a data processing operation in a data-bound DataGridView (for example, when a format or parse operation throws an exception or the update of the data source fails).
When you create a DataGridViewDataErrorEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Events and Delegates.
The following code example demonstrates how to use a DataGridViewDataErrorEventHandler to display information about a DataError in a message box. This code is part of a larger example provided in the DataGridViewComboBoxColumn class overview topic.
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
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.