:sweat:Copy Code จากเว็บแล้วมาปรับตามตารางที่มีครับ พอรันแล้วติดปัญหาดังรูปครับ
Private Sub Person_Code_AfterUpdate()
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("Select count(Person_Code) from Farmer where Person_Code ='" & Me.Label3 & "'")
'ติดตรงนี้'
If rst(0) > 0 Then
MsgBox ("เลขบัตรนี้มีการลงทะเบียนในระบบแล้ว")
End If
rst.Close
Set rst = Nothing
End Sub