Yay! That worked. Just a note...the issue with my Change Password form vs. yours is that you had the field from the table representing the employee (i.e. strEmpName). I had an unbound combo box.
So sorry for the issues. I guess I had to see it to understand it.
Now, one more thing on this subject

...I have some VBA code written that I think will check the value of the Old password to see if it is correct. However, I have no idea how to write the code to check the "New Password" field against the "Confirm New Password" field and then use that confirmation to change the password in the employees table (tblEmployees).
The code I have to check the value in the Old Password field is as follows (after clicking a button called "OK":
Option Compare Database
Private Sub Command1_Click()
'Check to see if data is entered into the password box
If IsNull(Me.txtPassword) Or Me.txtPassword = "" Then
MsgBox "You must enter a Password.", vbOKOnly, "Required Data"
Me.txtPassword.SetFocus
Exit Sub
End If
'Check value of password in tblEmployees to see if this
'matches value chosen in combo box
If Me.txtPassword.Value = DLookup("strEmpPassword", "tblEmployees", _
"[lngEmpID]=" & Me.cboEmployee.Value) Then
lngMyEmpID = Me.cboEmployee.Value
'Close Change Password Form
'Close Change Password form
DoCmd.Close acForm, "Change Password Form", acSaveYes
End If
Else
MsgBox "Password Invalid. Please Try Again", vbOKOnly, _
"Invalid Entry!"
Me.txtPassword.SetFocus
End If
End Sub