At the moment I’m creating an app with c# for my school project and I’m having a problem on the password.
When the app loads the LOGIN form, the password is hiden with this command:
`private void login_Load(object sender, EventArgs e)
{
this.loginTableAdapter.Fill(this.apprugbyDataSet.Login);
this.Size = new Size(360, 630);
txtPass.PasswordChar = '*';
}`
What do I need to do to show the password WHILE clicking on the button and hidding it again when released?
I’ve tried with the MouseUp and the MouseDown. Still don’t know what to do. Maybe I did something wrong.
Thanks for your time, have a nice day everyone!
New contributor
Alexandre Marques is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.