Hello everybody,
I have unbounded datagridview, and I am using the next command to add new row:
Code:
tblResults.Rows.Add()
This command adds new row at the bottom of the datagridview.

I need a method to insert a row in the middle of the datagridview, before or after selected row or at the specified position.

I would appreciate your advice.