Home › Forums › WinForms controls › Xceed Grid for WinForms › hi friends › Reply To: hi friends
I spent some time investing and looking at the documentation and finally managed to sort it out myself..will put the code just for later references..
AddHandler gcZones.QueryGroupKeys, AddressOf QueryGroupKeys
Private Sub QueryGroupKeys(ByVal sender As Object, ByVal e As QueryGroupKeysEventArgs)
Try
Dim grd As Xceed.Grid.Editors.GridComboBox = e.DataRow.Cells(“ZoneID”).CellEditor
Dim countryValue As String = grd.Text
e.GroupKeys(0) = countryValue.ToLower
Catch exception As exception
MessageBox.Show(exception.ToString())
End Try
End Sub
Its so easy to get lost in the world of EVENTS (h)
Imported from legacy forums. Posted by Sharad (had 3944 views)