Read password from text file and compare with user textbox input
-
How to compare the password we have keyin in (notepad/simple database) with user keyin in the textbox in window form. Another form that have two textbox: One for user key in old password Another for user key in new password If user klick button it will change the password in the notepad to new password that user key in second text box. Need help here.....
-
How to compare the password we have keyin in (notepad/simple database) with user keyin in the textbox in window form. Another form that have two textbox: One for user key in old password Another for user key in new password If user klick button it will change the password in the notepad to new password that user key in second text box. Need help here.....
Hi, You can consider the password as a normal text. Means you can compare the passwords typed in two textbox as same as how you use to check plain text typed in two textbox. if (textBox1.Text == textBox2.Text) { MessageBox.Show("hello"); } Thanks and Regards Balaji
-
Hi, You can consider the password as a normal text. Means you can compare the passwords typed in two textbox as same as how you use to check plain text typed in two textbox. if (textBox1.Text == textBox2.Text) { MessageBox.Show("hello"); } Thanks and Regards Balaji
Question 1:(form1) How to compare my default password that i save in notepad. How to compare with the password that user input in text box.How to call the password that have key in the notepad. Question 2: In another form I make to textbox one for user input old password and another textbox for user input new password.The new old password will be replace by the new password in the notepad.After this it will compare with the new password in the form1
-
Question 1:(form1) How to compare my default password that i save in notepad. How to compare with the password that user input in text box.How to call the password that have key in the notepad. Question 2: In another form I make to textbox one for user input old password and another textbox for user input new password.The new old password will be replace by the new password in the notepad.After this it will compare with the new password in the form1
Can you tell me what all will be in your notepad. Will it contain only the password ?
-
Can you tell me what all will be in your notepad. Will it contain only the password ?
-
Hi, You can consider the password as a normal text. Means you can compare the passwords typed in two textbox as same as how you use to check plain text typed in two textbox. if (textBox1.Text == textBox2.Text) { MessageBox.Show("hello"); } Thanks and Regards Balaji