Currently I have a function that searches through every row in my DataGridView and looks like so.
For Each row As DataGridViewRow In DataGridView1.Rows
Next
However due to an issue caused by something else I need to make it start the For Each Row at a specific row. I've tried "For Each row As DataGridViewRow In DataGridView1.Rows.IndexOf(RowToStartAt)" However this appears to be the wrong method to use.
Is what I'm trying to do actually possible or not? Or have I just tried to use the wrong method?