Check my code m trying to get stock from
Form2 Gridviewand show on Form1 Gridview so share any idea or give answer for thatforeach(DataGridViewRow row in dataGridView1.SelectedRows)
{object[] items =newobject[row.Cells.Count];for(int i =0; i < row.Cells.Count; i++) items[i]= row.Cells[i].Value;Form2 for2=newForm2(); for2.dataGridView2.Rows.Add(items);//for.dataGridView2.DataSource = items; dataGridView1.Rows.Remove(row);}
↧
Form1 Gridview selected Rows Data Send/Transfer on Form2 Gridview Rows by Button Click
↧