Page 1 of 1
สอบถามปัญหาป้องกันการบันทึกซ้ำครับ
Posted: Thu Jan 25, 2018 7:12 pm
by nutpopo
ผมไม่ต้องการให้ข้อมูลซ้ำครับ ใน ปกติผมจะพิมพ์ข้อมูล ลง DataGridView เมือพิมพ์ แล้ว กด Enter หากซ้ำ อย่ากให้ขึ้น MessBox เตือน
พอจะมีแนวทางหรือ คำแนะนำมัยครับ ขอบคุณครับ
Re: สอบถามปัญหาป้องกันการบันทึกซ้ำครับ
Posted: Thu Jan 25, 2018 10:56 pm
by snasui
Re: สอบถามปัญหาป้องกันการบันทึกซ้ำครับ
Posted: Fri Jan 26, 2018 10:27 am
by nutpopo
Code: Select all
For intI As Integer = 0 To BARCLODDataGridView.Rows.Count - 2
For intJ As Integer = intI + 1 To BARCLODDataGridView.Rows.Count - 2
If BARCLODDataGridView.Rows(intI).Cells(0).Value = BARCLODDataGridView.Rows(intJ).Cells(0).Value Then
MsgBox("พาสซ้ำกรุณาตรวจสอบ Barcode: " & BARCLODDataGridView.Rows(intJ).Cells(0).Value)
Me.BARCLODBindingSource.RemoveCurrent()
Dim u As Integer
u = BARCLODDataGridView.Rows.Count - 1
BARCLODDataGridView.CurrentCell = BARCLODDataGridView(0, u).Value
Exit Sub
End If
ขอบคุณครับ