パスワードが設定されているかを判別する。(バージョン5.3以降)
ispassword2 <filename> <password name>
setpassword2 又は getpassword2 コマンドで作成されたパスワードファイル <filename> に <password name> で識別されるパスワードが存在するかを調べる。
strdim pw 2 username = 'foo' encryptstr = 'Sesame!' ispassword2 'password2.dat' username ; result: 0=false; 1=true if result = 1 then getpassword2 'password2.dat' username pw[0] encryptstr 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] setpassword2 'password2.dat' username pw[0] encryptstr endif