U
Uri Dimant
Hello,friends!
I am trying to search for specific data into my data grid
I get my data selected but If I have a record at the end of a grid I cannot
see it unless i move scroll.
I dont do it with ..DefaultView.RowFilter because I would like to see all
my records.
With flex grid there were toprow where I can get selected row at the top of
the grid. Does anyone know how to do it with data grid?
With grid
Dim iRow As Integer
Dim myTable As DataTable
myTable = CType(.DataSource, DataTable)
For iRow = 0 To myTable.Rows.Count - 1
If iRow = 3 Then
..Select(9)
Exit For
End If
Next iRow
End With
I am trying to search for specific data into my data grid
I get my data selected but If I have a record at the end of a grid I cannot
see it unless i move scroll.
I dont do it with ..DefaultView.RowFilter because I would like to see all
my records.
With flex grid there were toprow where I can get selected row at the top of
the grid. Does anyone know how to do it with data grid?
With grid
Dim iRow As Integer
Dim myTable As DataTable
myTable = CType(.DataSource, DataTable)
For iRow = 0 To myTable.Rows.Count - 1
If iRow = 3 Then
..Select(9)
Exit For
End If
Next iRow
End With