1
ห้อง MS Access / : โค้ดคำสั่ง update ไม่ทำตามเงื่อนไข
« เมื่อ: 16 เม.ย. 64 , 21:08:29 »
ผมเลือกเหตุการณ์ เมื่อคลิก ครับ
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
ที่ปุ่มปรับโค๊ดเป็นแบบนี้นะครับโค๊ด: [Select]Private Sub Command145_Click()
On Error Resume Next
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("M1_GIF", dbOpenDynaset)
rst.MoveFirst
Do Until rst.EOF
rst.Edit
If rst!Rank > 36 Then
rst!Status = "2"
ElseIf rst!Rank <= 36 Then
rst!Status = "1"
End If
rst.Update
rst.MoveNext
Loop
Me.Recalc
rst.Close: Set rst = Nothing
End Sub