I tried the following code but it seems no response on grid row click
Private Sub GridRow_Click(ByVal sender As Object, e As System.EventArgs)
MessageBox.Show(“Hi”)
End Sub
Private Sub SubGridEvent()
Dim oRow As Xceed.Grid.DataRow
For Each oRow In gdCustomer.DataRows
AddHandler oRow.Click, AddressOf Me.GridRow_Click
Next oRow
End Sub
Imported from legacy forums. Posted by takume (had 289 views)