Answer to Question #2554 in Visual Basic for jame
Question #2554
Hello i am currently working on a visual programme project for uni. basically i am using a log in /log off button user interface as my project. the password is "Password" and i would like to know how to make the password invisible. example ******** = Password
Expert's answer
The control TextBox, which you are using for entering password, has a property PasswordChar
By defaut it is an empty string.
Set it to "*":
For instance
Text1.PasswordChar="*"
where Text1 is the name for password TextBox
By defaut it is an empty string.
Set it to "*":
For instance
Text1.PasswordChar="*"
where Text1 is the name for password TextBox
Need a fast expert's response?
Submit orderand get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment