1. Add datagridview from toolbox into windowsform. 2. Now populate datagridview by your required data. I already have populated my datagridview. 3. Now add fields like lables and textboxes alongside datagridview like shown below: 4. Now write the following code in the click event of datagridview. CODE: private void dataGridView1_Click(object sender, EventArgs e) { try { for (int i = 0; i < dataGridView1.Columns.Count; i++) { textBox5.Text = this.dataGridView1.CurrentRow.Cells[0].Value.ToString(); textBox6.Text = this.dataGridView1.CurrentRow.Cells[1].Va...