Firstly, this is my first time using the Flexgrid.
But anyway, here's what I need to do: I need to select a cell in the Flexgrid, but if it's not visible it will scroll down until it's visible.(I'm searching the grid... FYI)
Any help? Thanks.Code:Dim i As Integer
For i = 0 To fgMOB.Rows - 1
If LCase(Text1.Text) = LCase(fgMOB.TextMatrix(i, 1)) Then
'select the cell
End If
Next i
:)
