how to get to a cell in dataGrid?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i want that a specific cell in the dataGrid will be in focus,
also i want that the user will be able to edit a specific cell (like
cut,copy,paste)
how can i do that?
how can i get to a specific cell?
thanks
 
Is that a windows forms or a asp.net DataGrid?

Persumably it's a windows forms grid,

dataGrid1.CurrentCell = new DataGridCell(row, column);

Would this help you out?
 
It is a windows forms
and its working so thanks.
i still dont know how to use the cut,copy.. with the dataGrid
any ideas?
 
Back
Top