kiepgiangho79 > 26-09-17, 11:23 PM
tranthanhan1962 > 27-09-17, 03:44 AM
kiepgiangho79 > 27-09-17, 08:42 AM
(27-09-17, 03:44 AM)tranthanhan1962 Đã viết: Code form login có rất nhiều trên forum bạn có thể tìm thấy code phù hợp cho bạn
lmthu > 27-09-17, 10:32 AM
tranthanhan1962 > 27-09-17, 10:56 AM
Private Sub fakeuser_AfterUpdate()
Dim rs As Recordset
Set rs = Me.RecordsetClone
rs.FindFirst "[user] = '" & Me![fakeuser] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Private Sub Dangnhap_Click()
If checkpassword.Value = password.Value Then
Msgbox "Mật khẩu đúng. Bạn có quyền sử dụng chương trình"
DoCmd.Close
else
Msgbox "Mật khẩu sai. Bạn không có quyền sử dụng chương trình"
End if
End Sub
kiepgiangho79 > 28-09-17, 10:35 PM
Private Sub nhaplaimatkhaumoi_AfterUpdate()
If Trim(Me.matkhaumoi)=Trim(Me.nhaplaimatkhaumoi) then 'Trường hợp User nhập đúng 2 mật khẩu cần đổi
Me.CmdOk.Setfocus
Else
Msgbox "Mật khẩu mới nhập không nhất quán! nhập lại!"
Me.matkhaumoi.Setfocus
End if
End Sub
tranthanhan1962 > 28-09-17, 10:54 PM
Private Sub nhaplaimatkhaumoi_AfterUpdate()
If matkhaumoi.Value=nhaplaimatkhaumoi.Value then 'Trường hợp User nhập đúng 2 mật khẩu cần đổi
DoCmd.GoToControl "CmdOk"
Else
Msgbox "Mật khẩu mới nhập không nhất quán! nhập lại!"
Me.matkhaumoi.Setfocus
End if
End Sub
Private Sub nhaplaimatkhaumoi_AfterUpdat()
kiepgiangho79 > 29-09-17, 05:09 PM
maidinhdan > 29-09-17, 10:29 PM
(29-09-17, 05:09 PM)kiepgiangho79 Đã viết: Vậy là code sai hả bác, bác viết ho em một đoạn đi. thanks bác nhiều
kiepgiangho79 > 30-09-17, 02:17 PM