BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
''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
>''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 >