W William Ryan eMVP Feb 17, 2004 #2 What do you mean by exact location? You can find the current row and current column by using the CurrentCell property and you can use HitTest to detect the mouse coordinates. HTH, Bill
What do you mean by exact location? You can find the current row and current column by using the CurrentCell property and you can use HitTest to detect the mouse coordinates. HTH, Bill
A Alex Feinman [MVP] Feb 17, 2004 #3 There is a method - DataGrid.GetCellBounds() Also, take a look at http://www.opennetcf.org/Forums/topic.asp?TOPIC_ID=245
There is a method - DataGrid.GetCellBounds() Also, take a look at http://www.opennetcf.org/Forums/topic.asp?TOPIC_ID=245
A Angel Montesinos Feb 17, 2004 #4 No, but I have find the solution: Rectangle cellPos = dataGrid1.GetCellBounds(dataGrid1.CurrentCell.RowNumber, dataGrid1.CurrentCell.ColumnNumber);
No, but I have find the solution: Rectangle cellPos = dataGrid1.GetCellBounds(dataGrid1.CurrentCell.RowNumber, dataGrid1.CurrentCell.ColumnNumber);