Home » Developer & Programmer » Forms » password encryption
password encryption [message #83943] Wed, 07 January 2004 23:09 Go to next message
ramya
Messages: 87
Registered: August 2002
Member
how
can create a login dialog box in forms and password encryption in a text box.
pls hlp
ramya
Re: password encryption [message #83944 is a reply to message #83943] Wed, 07 January 2004 23:43 Go to previous messageGo to next message
Shvk
Messages: 26
Registered: December 2003
Junior Member
Go to the property pallete of your password field and set "Conceal Data" property to yes. It will solve your problem.

Regards,
SHVK
on_logon trigger [message #83953 is a reply to message #83944] Thu, 08 January 2004 23:11 Go to previous messageGo to next message
ramya
Messages: 87
Registered: August 2002
Member
can anyone help with a sample how can invoke the logon screen or on_logon trigger
with regards
ramya
Re: on_logon trigger [message #84134 is a reply to message #83953] Tue, 03 February 2004 22:19 Go to previous message
Qavi
Messages: 24
Registered: August 2002
Junior Member
on-logon Trigger

declare
cn VARCHAR2(1);
begin
logon (:userid,:pwd||'@new',false);
----- if login fails then form_failure status is true
----- need not write form_failure = true to evaluate the condition
----- if login is successful then form_failure is false (check login button code)
if form_failure then
message('Invalid userid/password login denied');
raise form_trigger_failure;
end if;
end;

and execute this trigger on some condition , that is by having Login button and on when-button-pressed

EXECUTE_TRIGGER('ON-LOGON');

Rgds
Qavi
Previous Topic: How to delete file from temp directory
Next Topic: GET_FILE_NAME to open a dialog box
Goto Forum:
  


Current Time: Wed Apr 24 02:02:20 CDT 2024