กระทู้เก่าบอร์ด อ.Yeadram
997 2
URL.หัวข้อ /
URL
ตรวจสอบrecordsetแบบตัวเลขและอักษร
sid และ time เป็นแบบตัวเลข
did เป็น แบบ ตัวอักษร
Dim dbprompt As Database
Dim rcdcust As Recordset
Set dbprompt = DBEngine.Workspaces(0).Databases(0)
Set rcdcust = dbprompt.OpenRecordset("score")
rcdcust.FindFirst (("[sid]&[time] = " & Me.[code] & Me.[time]) And ("[did] =' " & Me.[rdid]&" ' "))
ผลการค้นหา เป็น type mismatch
มันผิดตรงใหนมั่งครับ
did เป็น แบบ ตัวอักษร
Dim dbprompt As Database
Dim rcdcust As Recordset
Set dbprompt = DBEngine.Workspaces(0).Databases(0)
Set rcdcust = dbprompt.OpenRecordset("score")
rcdcust.FindFirst (("[sid]&[time] = " & Me.[code] & Me.[time]) And ("[did] =' " & Me.[rdid]&" ' "))
ผลการค้นหา เป็น type mismatch
มันผิดตรงใหนมั่งครับ
2 Reply in this Topic. Dispaly 1 pages and you are on page number 1
2 @R13856
ขอบคุณครับ
Time: 0.3510s
rcdcust.FindFirst "sid = " & cstr(me.code) & " and time = " & cstr(me.time) & " and did = '" & me.rdid & "'"