E có làm form Login gồm 1 combo box chứa các ID, 1 text box để nhập password
1 button Login
Code Button Login thì nó chạy debug ra lỗi chỗ này
If Me.Text7.Value = DLookup("Password", "tblLogin", "[StudentID]=" & Me.Combo11.Value) ThenStudentID = Me.Combo11.Value
Đây là đoạn code đầy đủ của em :
Private Sub Command10_Click()
If IsNull(Me.Combo11) Or Me.Combo11 = "" Then
MsgBox "Nhap vao UserName.", vbOKOnly, "Required Data"
Me.Combo11.SetFocus
Exit Sub
End If
If IsNull(Me.Text7) Or Me.Text7 = "" Then
MsgBox "Nhap vao Password.", vbOKOnly, "Required Data"
Me.Text7.SetFocus
Exit Sub
End If
If Me.Text7.Value = DLookup("Password", "tblLogin", "[StudentID]=" & Me.Combo11.Value) Then
StudentID = Me.Combo11.Value
DoCmd.Close acForm, "Form2", acSaveNo
DoCmd.OpenForm "Form1"
Else
MsgBox "Password ko dung, thu lai", vbOKOnly, "Invalid entry!"
Me.Text7.SetFocus
End If
End Sub
Table cua e tên là tblLogin, co 2 fields là StudentID, Password.
Mong các anh chị chỉ giúp