manishkaduskar
Programmer
I am writing a Rexx program which displays ISPF Panel. If the user presses Enter key or PF3 key, the panel returns control to the program but I can not differentiate between the keys. I need PF3 to end the program and enter to Process furthur.
Code:
address ispexec "display panel(panel1)"
if KeyIn = 'f3' then EXIT else .......