Sample output:

I type in Bob in the password field and click Next.

I type in Bob in the second password field and click Continue.

Message displayed if the passwords match:

Message displayed if the passwords are different:

Pseudocode:
Next Button Event Handler Method
If the first password textbox is not blank
Make visible the second password textbox, the Done button, and the labels
Else
Put "You must enter a password" in the label
End-If
Done Button Event Handler Method
If the first password text box is not empty
If the first password text box equals the second password textbox
Display the message "Passwords are the same"
Else
Display the message "Passwords are different"
End-If
Else
Display the message "You must enter a password"
End-If
Dorababu MekaPosted Apr 9, 2016, 2:31 AM
Wesley HattenPosted Apr 8, 2016, 2:33 PM
Dorababu MekaPosted Oct 25, 2012, 2:02 AM
place 2 panels on your form and place the required controls inside that panel.
First panel holds a label, text-box and a button
Second panel holds 2 labels, text-box and a button and make this panel visible to false
When coming to code set two text box properties PasswordChar="*"
in first button click