Hello,

I have an application in which a grid display rows to be insrtered into a
DB. Upon failure, I built a list box with an errored row as the added Item
and the RowError text as the displayed value in the List box.

I want to be able to double click an error row in the list box, select the
corresponding rows in the Data grid and make that row visible in the grid
window.

Mostly, this works fine. I am having two problems:

1. In the Double Click event, I
"dataGrid1.Unselect(dataGrid1.currentRowIndex)". It simply does not Unselect
a row.

2. I can find no way to get the grid to scroll to the programmatically
selected row. I can see the row is selected (highlighted) but it is buried
in the grid.

Mklapp