|
|
|
ช่วยดูโค๊ด ดึงข้อมูลจาก SQL Server มาใส่ใน DataGridView แล้วเช็คข้อมูลซ้ำ |
|
|
|
|
|
|
|
Code (C#)
if (dataGridView1.Rows.Count != 0)
{
for (int q = 0; q < dataGridView1.Rows.Count; q++)
{
int w = 0;
if (dataGridView1.Rows[q].Cells[w].Value == textBox1)//ถ้าซ้ำ
{
MessageBox.Show("ซ้ำ");
}
else //ถ้าไม่ซ้ำ
{
// ข้อมูล
}
}
}
ได้แล้วครับ แต่มันวน loop ไม่หยุด
|
|
|
|
|
Date :
2011-02-10 22:21:43 |
By :
Gain |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เจอแล้วก็ break; ครับ
|
|
|
|
|
Date :
2011-02-11 09:28:02 |
By :
3rds |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|