- Home
·
- String Manipulation
·
- An easy function that will encrypt a password when a user enters text in a textbox they don't wish
An easy function that will encrypt a password when a user enters text in a textbox they don't wish
An easy function that will encrypt a password when a user enters text in a textbox they don't wish to have others see.
Rate An easy function that will encrypt a password when a user enters text in a textbox they don't wish
(2(2 Vote))
Function Encryption(EncryptCode As String)
EncryptCode = "*"
txtPassWord.PasswordChar = EncryptCode
End Function
'make sure a textbox named txtPassword is on your form and put this code
'below in its text change event
Private Sub txtPassWord_Change()
Dim Password As String
Encryption (Password)
End Sub
An easy function that will encrypt a password when a user enters text in a textbox they don't wish Comments
No comments yet — be the first to post one!
Post a Comment