Free Lessons
Courses
Seminars
TechHelp
Fast Tips
Templates
Topic Index
Forum
ABCD
 
Home   Courses   TechHelp   Forums   Help   Contact   Merch   Join   Order   Logon  
 
Back to Access Forum    Comments List
Upload Images   @Reply   Bookmark    Link   Email   Next Unseen 
Using a recordset to update a record
Kenneth B 
    
12 years ago
Dim X

If NewPass = "" Or IsNull(NewPass) Then
    MsgBox "Please Enter A New Password"
    Me.NewPass.SetFocus
    Exit Sub
End If

If ReEnter = "" Or IsNull(ReEnter) Then
    MsgBox "Please Re-Enter New Password"
    Me.ReEnter.SetFocus
    Exit Sub
End If

If NewPass <> ReEnter Then
    MsgBox "The Re-Enterd Password Does Not Match The New Password"
    NewPass = ""
    ReEnter = ""
    Me.NewPass.SetFocus
    Exit Sub
End If

If Len(NewPass) <= 7 Then
    MsgBox "Password Must Be At Least 8 Charaters Long"
    NewPass = ""
    ReEnter = ""
    Me.NewPass.SetFocus
    Exit Sub
End If


Dim db As Database
Dim RS As DAO.Recordset
Dim UID As Integer
Dim pass As String


UID = UserId.Text
pass = NewPass.Text

Set db = CurrentDb
Set RS = db.OpenRecordset("Select * From UsersT")
    RS.FindFirst "UserID=" & UID
        If Not RS.NoMatch Then
            If LCase(RS.Fields!Password) = LCase(pass) Then
                MsgBox "Invaild New Password Try Again"
                NewPass = ""
                ReEnter = ""
                Me.NewPass.SetFocus
                Exit Sub
            Else
                RS.Edit
Error Line----> LCase(RS!Password)= LCase(pass)
                RS.Update
                Exit Sub
            End If
        End If
    
    
Set RS = Nothing
Set db = Nothing


Reply from Richard Rost:

Your statement is formed wrong. You would just say:

rs!Password = LCASE(pass)

You can't use a function like that on the LEFT side of an equation. You're setting the variable rs!Password equal to whatever's on the right side.

This thread is now CLOSED. If you wish to comment, start a NEW discussion in Access Forum.
 

Next Unseen

 
New Feature: Comment Live View
 
 

The following is a paid advertisement
Computer Learning Zone is not responsible for any content shown or offers made by these ads.
 

Learn
 
Access - index
Excel - index
Word - index
Windows - index
PowerPoint - index
Photoshop - index
Visual Basic - index
ASP - index
Seminars
More...
Customers
 
Login
My Account
My Courses
Lost Password
Memberships
Student Databases
Change Email
Info
 
Latest News
New Releases
User Forums
Topic Glossary
Tips & Tricks
Search The Site
Code Vault
Collapse Menus
Help
 
Customer Support
Web Site Tour
FAQs
TechHelp
Consulting Services
About
 
Background
Testimonials
Jobs
Affiliate Program
Richard Rost
Free Lessons
Mailing List
PCResale.NET
Order
 
Video Tutorials
Handbooks
Memberships
Learning Connection
Idiot's Guide to Excel
Volume Discounts
Payment Info
Shipping
Terms of Sale
Contact
 
Contact Info
Support Policy
Mailing Address
Phone Number
Fax Number
Course Survey
Email Richard
[email protected]
Blog RSS Feed    YouTube Channel

LinkedIn
Copyright 2026 by Computer Learning Zone, Amicron, and Richard Rost. All Rights Reserved. Current Time: 5/15/2026 3:15:57 AM. PLT: 0s