How do I pass DataGridView rows to a DataGridView on a different Form?
pos_receipt.PrintTable.Rows.Add(row.Cells("item_info").Value.ToString,
row.Cells("Quantity").Value.ToString,
row.Cells("Rate").Value.ToString,
row.Cells("total").Value.ToString)
NB:
pos_receipt
is the Form name where the DataGridView that I want to pass rows is located.
PrintTable
is a data table