Can someone please help me:
I want to do a password screen, customize , input and out in same scareen, See image below:
top box is : input1 (input box) eg Entering password
bottome : ListBox1 (List box) to view eg "Invalid Password Try again"
I have a code but this will popup a screen, (I dont want that way)
PHP Code:-- the 'correct' password
real_password = "password";
--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
Dialog.Message("Incorrect Password", "Password Correct.", MB_OK,
else
-- wrong password (change this message to suit)
Dialog.Message("Incorrect Password", "Incorrect password.", MB_OK, MB_ICONEXCLAMATION);
Application.Exit(0);
end
![]()


