CAI
09-18-2005, 06:57 PM
I use this string or script
but is there also an option to remember the password
for the next time use :huh
maybe a remember login option
please help :o
-- the correct password "valid"
real_password = "valid";
-- prompt the user to enter a password
user_password = Dialog.PasswordInput("Password", "Please enter the password:", MB_ICONQUESTION);
-- compare the user's password to the correct password.
-- If the user supplies the wrong password, exit the program.
if real_password ~= user_password then
Application.Exit();
end
but is there also an option to remember the password
for the next time use :huh
maybe a remember login option
please help :o
-- the correct password "valid"
real_password = "valid";
-- prompt the user to enter a password
user_password = Dialog.PasswordInput("Password", "Please enter the password:", MB_ICONQUESTION);
-- compare the user's password to the correct password.
-- If the user supplies the wrong password, exit the program.
if real_password ~= user_password then
Application.Exit();
end