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
For those who could not fire the click event, they may use following code
public Form1()
{
InitializeComponent();
this.dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellClick);
}