How do I focus on this cell in a winforms Datagrid control?????

  • Thread starter Thread starter rhaazy
  • Start date Start date
R

rhaazy

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?????
 
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....
 
Back
Top