I have a datagridview that is a full row select. How would I grab the data from only a certain cell no matter what cell in the row was clicked on since it highlights the ent
this get me the text value of exact cell in data grid view
private void dataGridView_SelectionChanged(object sender, EventArgs e) { label1.Text = dataGridView.CurrentRow.Cells[#].Value.ToString(); }
you can see it in label and change # wih the index of the exact cell you want