I have to work on a project that has a datagridview without a datasource. Also it’s done in vb.net. I want to loop through each row on a specific column to find specific data and set my focus on that record.
For Each item As C1.Win.C1FlexGrid.Row In myDataGrid.Rows
' something like searchFor/contains
' (no idea, can't find the right way to search) for mySpecificData
Next
Help is appreciated, best regards
I assume that you are using component One FlexGrid, so I had a look at the documentation at the according site. Each row has an Item Property so this example might work
If you’d like to directly access a cell you may use Select method instead.