why doesnt this work????
DataGridCell newrowcell = new
DataGridCell(dataGrid1.CurrentRowIndex,0);
dataGrid1.CurrentCell = newrowcell;
If I use the integer 1 instead of 0, it works, but that is the second
column, I want the focus to be on the first column, however this piece
of code appears to do nothing. Anyone know why?????
rhaazy - 28 Jul 2006 20:06 GMT
If I add this line before I do it:
dataGrid1.Focus();
It works, which implies to me that this is a bug
It would appear that if you focus on any cell other than the first
column it will work, but if you want to focus on the first column you
need to focus on the grid first....
> why doesnt this work????
>
[quoted text clipped - 5 lines]
> column, I want the focus to be on the first column, however this piece
> of code appears to do nothing. Anyone know why?????