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

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?????
 
R

rhaazy

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....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top