: how to make a program in visual basic verifying the password three times? thanks!
:
Well, the easier way is to put on a Form three TextBoxes (let's call them "TextBox1", "TextBox2" and "TextBox3", and a Command Button (CmdValidate).
In the CmdValidate_Click event, you just have to compare the values in the TextBoxes like this:
if (TextBox1.text = "<i>correct password goes here</i>") and (TextBox1.text = TextBox2.Text) and (TextBox1.text = TextBox3.Text) then
'the password is correct
else
'wrong password somewhere
end if
For any other questions, feel free to ask.