Keyboard Navigation with Tab Control In Oracle Forms
Here is an example for trap "Crtl-TAB" to Move to the Next tab in a form
Edit the the Resource-file for your Configuration
for example:
$ORACLE_HOME/forms/admin/resoures/US/frmwebus.res
or frmwebd.res ..or ( Details see Note: 209671.1 )
seach for Key you don't need in your application
for example: Key-F2
Comment the line out, per "#":
## 113 :3 "Shift-Ctrl+F2" :84 : "Funktion 2"
create a new line
9 : 2 : "Crtl-Tab" : 84 : "Ctrl Tab"
Create FORM-Level Trigger
KEY-F2
BEGIN
NULL; -- ( or what you like to do, When Crtl-Tab is pressed )
END;
Edit the the Resource-file for your Configuration
for example:
$ORACLE_HOME/forms/admin/resoures/US/frmwebus.res
or frmwebd.res ..or ( Details see Note: 209671.1 )
seach for Key you don't need in your application
for example: Key-F2
Comment the line out, per "#":
## 113 :3 "Shift-Ctrl+F2" :84 : "Funktion 2"
create a new line
9 : 2 : "Crtl-Tab" : 84 : "Ctrl Tab"
Create FORM-Level Trigger
KEY-F2
BEGIN
NULL; -- ( or what you like to do, When Crtl-Tab is pressed )
END;
Thanks, it works
ReplyDelete