Access 2000
Have a form with a Combo box linked to Employee Table that just lists their names.
After their selection I need to verify by checking password.
Private Sub cbx_Employee_BeforeUpdate(
Cancel As Integer)
If Me.cbx_Employee.Column(5) <> [txbx_Password] Then...
I currently have an InputBox, but password is visible and InputBox doesn't allow tweaking.
I've tried opening a form with popup modal set in BeforeUpdate event.
But the _BeforeUpdate code continues after OpenForm "pwpopup" line.
So even though my popup form is open the update completed on the original form.
How do I stop the code or update while the pop form validates the password?
OR
How to validate with user name and password a control before it is updated!
Start Free Trial