Hello,
could somebody help me with password code!
i have the code as follows but i don't know how to do "loop" to give the user three attempts before systme close the form!
PROCEDURE PWD_VALIDATION IS
alert_choice number;
BEGIN
if:PWD.password = 'oracle'then
go_block('WELCOME');
else
if:PWD.password <> 'oracle'then
alert_choice := show_alert ('ALERT');
if alert_choice = alert_button1 then
exit_form;
end if;
end if;
end if;
END;
waiting for your replies ..
thanks in advance