public void view1() { DataTable dt = new DataTable(); dt = sale.GetAllBills("SaleBill"); dataGridView1.Rows.Clear(); foreach (DataRow item in dt.Rows) { int n = dataGridView1.Rows.Add(); dataGridView1.Rows[n].Cells[0].Value = Convert.ToDateTime(item[0].ToString()); dataGridView1.Rows[n].Cells[1].Value = item[1].ToString(); dataGridView1.Rows[n].Cells[2].Value = item[2].ToString(); dataGridView1.Rows[n].Cells[3].Value = item[3].ToString(); } }
public void view1() { DataTable dt = new DataTable(); dt = sale.GetAllBills("SaleBillDetail", eid); dataGridView1.Rows.Clear(); foreach (DataRow item in dt.Rows) { int n = dataGridView1.Rows.Add(); dataGridView1.Rows[n].Cells[0].Value = item[0].ToString(); dataGridView1.Rows[n].Cells[1].Value = item[1].ToString(); dataGridView1.Rows[n].Cells[2].Value = item[2].ToString(); dataGridView1.Rows[n].Cells[3].Value = item[3].ToString(); dataGridView1.Rows[n].Cells[4].Value = item[4].ToString(); dataGridView1.Rows[n].Cells[5].Value = item[5].ToString(); } }