private bool CheckDuplicade(string Barcode) { bool result = false; for(int i=0;i<dataGridView1.Rows.Count;i++) { if(dataGridView1.Rows[i].Cells["Barcode"].Value.ToString() == Barcode) { dataGridView1.Rows[i].Cells["Qty"].Value = Convert.ToInt32(dataGridView1.Rows[i].Cells["Qty"].Value.ToString()) + 1; result = true; } } return result; } private void Sum() { double Sum = 0; int Cnt = 1; for (int i = 0; i < dataGridView1.RowCount; i++) { dataGridView1.Rows[i].Cells["No"].Value = Cnt++; Sum += Convert.ToDouble(dataGridView1.Rows[i].Cells["Price"].Value) * Convert.ToDouble(dataGridView1.Rows[i].Cells["Qty"].Value); } label2.Text = Sum.ToString("#,#00.00"); }
Quote:Sum += Convert.ToDouble(dataGridView1.Rows[i].Cells["Price"].Value) * Convert.ToDouble(dataGridView1.Rows[i].Cells["Qty"].Value);
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง