1
ห้อง MS Access / : กำหนดเงื่อนไขโดยแสกนสินค้าหรือสแกนบัตรสมาชิกในช่องเดียวกัน แบบ 2 เงื่อนไข
« เมื่อ: 22 ก.ย. 61 , 21:53:00 »
ขอบคุณมากครับอาจารย์สันติสุข ทำได้แล้วครับ ตามตัวอย่างครับ
โค๊ด: [Select]
Private Sub Barcode_AfterUpdate()
If Not IsNull(DLookup("C_ID", "Customer", "C_ID = " & Me.[Barcode])) Then
Parent.[Bill_Customer] = Me.[Barcode]
Parent.Dirty = False
Me.Barcode.Value = Null
ElseIf Not IsNull(DLookup("P_ID", "Product", "P_ID = '" & Me.[Barcode] & "' ")) Then
[Bii_product] = Me.[Barcode]
Me.Barcode.Value = Null
DoCmd.GoToRecord , , acNewRec
End If