Hi!
I have just made a restriction program.
The program is passwordprotected,
but there is only one user.
I want the user to change the password
at any time.
I use the following code:

Dim Login As Integer
If WRusername.Text = "CyberCarsten" And WRpassword.Text = "ccwr" Then
Unload Me
WinRestrict.Show
Else
Login = MsgBox("Incorrect login!!", vbCritical)
WRusername.Text = ""
WRpassword.Text = ""
GoTo login2
End If

How can i make a button that can use anoter password
Can i use the registry???