how to pass datagridview values from one form to another using dataGridView1_CellClick
Form2.cs
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
string field = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
// how to pass above Field value to Form3
}
Please send me solution
Thank u