Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hii,everyone

How to solve this error,please??

"System.Windows.Forms.DataGridViewCell' does not contain a definition for 'RowNumber' and no extension method 'RowNumber' accepting a first argument of type 'System.Windows.Forms.DataGridViewCell' could be found "

appears in this code:

C#
int iRownr = this.dataGrid1.CurrentCell.RowNumber;
int iColnr = this.dataGrid1.CurrentCell.ColumnNumber;


red line appear on RowNumber
red line appear on ColumnNumber
Posted
Updated 16-Sep-12 1:32am
v3

Although there is no RowNumber and ColumnNumber property available for DataGridView, you can use objects of DataGridViewCellEventArgs to get the Current row number and current column number as follows:

C#
private void dataGridView1_CellValueChanged(object sender, DataGridViewCellEventArgs e)
    {
        int columnIndex = e.ColumnIndex;
        int rowIndex = e.RowIndex;
    }

This will work only between any cell related event.

And if you want to rows according to index number you can use the following code

C#
DataGridViewRow[] rows = new DataGridViewRow[dataGridView1.Rows.Count];

        for (int i = 0; i < dataGridView1.Rows.Count; i++)
        {
            rows[i] = dataGridView1.Rows[dataGridView1.Rows.IndexOf(dataGridView1.Rows[i])];
        }
 
Share this answer
 
Comments
mhassan083 17-Sep-12 2:26am    
thanks,Ahmed
A quick glance at the documentation[^] shows that System.Windows.Forms.DataGridViewCell does not contain a property by the name of RowNumber, or indeed ColumnNumber. Which is what the error message and red line are clearly explaining to you.
 
Share this answer
 
dataGrid1 in your code has type System.Windows.Forms.DataGridViewCell but properties RowNumber and ColumnNumber belongs to class System.Windows.Forms.DataGridCell. So you should use object of DataGridCell class or use properties ColumnIndex and RowIndex which belongs to DataGridViewCell class.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900