Good Evening,
I have been supplied some code that hides a password if a tick box is ticked.
Is there anyway the code below can be chnaged so the tick box isnt an issue and the password is just "******" out.
The code i am using is as below.
chkHide is the part on the userform says "Hide Password"
Many Thanks
I have been supplied some code that hides a password if a tick box is ticked.
Is there anyway the code below can be chnaged so the tick box isnt an issue and the password is just "******" out.
The code i am using is as below.
chkHide is the part on the userform says "Hide Password"
Code:
txtPass.PasswordChar = IIf(chkHide.Value, "*", "")
Many Thanks