ShowPassword.zip
Hi all and good morning,
I have a problem that is just driving me crazy.
I have attached db and is just a form, qry, and a few tables, really simple... Sample Data is bogus....
db opens to form in question.
I have a form that has shows me the business (Institution) and website
Along with a continous sub form that shows
password, username, and login and last changed. Its where i store my online stuff..
I also has a checkbox to show password with code below.
The problem is if I tic the showpassword chkbox, it shows (In this case) all the passwords in that form record.
So if I have two users, it shows both passwords instead of just the one i have the record selector on.
The goal is to check the chkbox and show the password for the current record that is selected.Code:'Just one of many samples i have tried.....current one in Private Sub ShowPassword_Click() If Me.ShowPassword = True & "OnLineAccessUserID=" & Me.OnlineAccessUserID Then Me.Password.InputMask = "" Else Me.Password.InputMask = "Password" End If Call Form_Current End Sub
I have tried many different methods to overcome this and cannot for any reason figure out how to just show the password to the record selected?
Just driving me absolutely nuts. Not a major issue with this as my wife and I are the only users but would like to know how to accomplish this task
I am sure there is a way, i just dont know the path to take.
Thanks
Dave