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
I just want to point out, you can use .selectedindex to make it a little cleaner
string value = gridview.Rows[gridview.SelectedIndex].Cells[1].Text.ToString();