The event never fire. The grid is on an mdiChild form.
>You can handle the grid.Model.PasteCelltext event.
>
>''in formload
> AddHandler Me.GridDataBoundGrid1.Model.PasteCellText, AddressOf gridModel_PasteCellText
>
>
>
>''the handler
>Private Sub gridModel_PasteCellText(ByVal sender As Object, ByVal e As GridPasteCellTextEventArgs)
> If e.RowIndex = 2 Then ''dont paste into row 2
> e.Cancel = True
> End If
> End Sub
>