AD
Administrator
Syncfusion Team
May 24, 2004 03:05 PM UTC
Try handling teh ValiateFailed event, and in your handler set grid.CurrentCell.ErrorMessage.
Private Sub GridDataBoundGrid1_ValidateFailed(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridValidateFailedEventArgs) Handles GridDataBoundGrid1.ValidateFailed
MessageBox.Show("My Message")
e.Handled = True
End Sub