0
私はDLookupを使用してデータベースの値に対してテキストフィールドをチェックしようとしていますが、エラーを返します。 MemberIDはユーザー名で、txtUsernameフィールドを使用して検索されています。パスワードは明らかにパスワードであり、どちらもメンバーテーブルから取得されます。MicrosoftでDlookupを使用する方法
Private Sub btnLogin_Click()
If Me.txtPassword.Value = DLookup("[Password]", "Member", "MemberID =
Me.txtUsername.Value") Then
MsgBox "Access Granted", vbInformation, "CD Shop"
MsgBox "Welcome", vbInformation, "CD Shop"
DoCmd.Close
DoCmd.OpenForm "frmGymActivity"
Else
MsgBox "Please re-enter your Username and Password."
End If
End Sub