私は自分のシステムで検索を行っていますが、次のように述べています。
Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
1桁しか入力できず、別の桁を消去または入力すると、エラーがポップアップ表示されます。
ここに私のコード:
Try
For row As Integer = 0 To dgv_room.Rows.Count
If dgv_room.Rows(row).Cells(0).Value.ToString.Substring(0, tbx_search.Text.Length) = tbx_search.Text Then
dgv_room.Rows(row).Selected = True
Exit For
End If
Next
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try