Determines if a password is stored. (version 4.75 or later)
ispassword <filename> <password name>
A password identified by <password name> from the password file <filename> is determined if the password is stored in the file.
strdim pw 2 username = 'foo' ispassword 'password.dat' username ; result: 0=false; 1=true if result = 1 then getpassword 'password.dat' username pw[0] pw[1] = pw[0] else msg = 'What is your password for ' strconcat msg username strconcat msg '?' passwordbox msg 'Enter your password' pw[0] = inputstr pw[1] = pw[0] setpassword 'password.dat' username pw[0] endif