I am using ado database and datagrid.
I am using the find routine to find my element inside a table. As soon as I find my element, I have to select that row inside datagrid, my datagrid has 100 of elements so I am using the scroll bar to display all of them.
I am using "DataGrid4.Row = myRowNum" which does not work, the order of myRowNum is correct. How do I point to that row:myRowNum inside datagrid. Can someone help or give a hint. Thanks in advance.
here is my code:

dim bElementExist as boolean
bElementExist = findmyelement()
If bElementExist Then
DataGrid4.Row = myRowNum
Else
MsgBox "Sorry Element: " & myElement & " does not exists. Please, try again."
End If