1825760 Members
2070 Online
109687 Solutions
New Discussion

Re: F3 to Exit

 
oyok sunardi_1
Occasional Advisor

F3 to Exit


How can I do if i would like set function key F3=exit on 700/60 terminal with Wyse60
term type.

5 REPLIES 5
Carlos Fernandez Riera
Honored Contributor

Re: F3 to Exit


See terminal's user manual


http://docs.hp.com/hpux/onlinedocs/hw/c1099a_terminal_um.pdf

Or, want you want is recognice f3 as exit in your aplication?
unsupported
oyok sunardi_1
Occasional Advisor

Re: F3 to Exit

I mind is F3 can't define exit from application binding and than always ^D as exit.

Application Database is Oracle 7.3.4 and Form45.

Carlos Fernandez Riera
Honored Contributor

Re: F3 to Exit


wyse60 Terminal must send ^AB/r ( HEX 01 42 0D) when you press F3 as defined in terminfo database:

This is what terminfo expect from Function key 3

# export TERM=wyse60
#untic
.
.
kf1=^A@r, kf10=^AIr, kf2=^AAr, kf3=^ABr,
kf4=^ACr, kf5=^ADr, kf6=^AEr, kf7=^AFr,
.
.
.

Oracle Forms for wyse60 definition must recognize this secuence , and this secuence must be asingned to an action ( key_commit, key_exit).


You can setup this value using the keyboard menu (see manual), PROGRAM MENU (F12),

Often function keys are programable using escape secuence from host, but in this manual i dont find any reference
unsupported
Rick Garland
Honored Contributor

Re: F3 to Exit

Modification of the Wyse60 terminfo file is required to have the terminal recognize the escape sequence. Once the modification is complete, run through 'tic' (terminfo compile) to generate a new terminfo file. Be sure to save the original just in case.
oyok sunardi_1
Occasional Advisor

Re: F3 to Exit

thank's all

my problrm is solve after edit fmrcwy50.res
file.

oyok.s