i have table like below

these are the code that i'm trying to do, no hope though, i want to get that CAid014 value
string splitter = dataGridView1.Rows[dataGridView1.RowCount].Cells[0].ToString();
MessageBox.Show(splitter); // to print what splitter got
i'm using datagridview1.rowcount so the datagridview1.rows will get the last rows. and cells[0] will get the 0 index of row and it got error.
how do i get that CAid cells ?
solved : i miss that value like this
string splitter = dataGridView1.Rows[dataGridView1.RowCount].Cells[0].value.ToString();
dataGridView1.Rows[dataGridView1.RowCount - 1]?? – yogi Aug 6 '12 at 13:09