View previous topic :: View next topic |
Author |
Message |
bade_miya Beginner

Joined: 10 Dec 2003 Posts: 110 Topics: 38
|
Posted: Fri Aug 27, 2004 3:57 am Post subject: Controlling PF keys in REXX |
|
|
Hi all,
I searched in Google and in this site, but i couldnt find how to control PF keys in REXX. I have a panel in which i have to make use of PF keys. Can any one tell me how to do this. If available, can anyone send me any link containing the above info.
Thanks
bade_miya |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12377 Topics: 75 Location: San Jose
|
Posted: Fri Aug 27, 2004 5:58 am Post subject: |
|
|
Bade_miya,
Look up KEYLIST command. You can define your own set of pfkeys using key list
Code: |
)PANEL [KEYLIST (keylist-name[,keylist-applid,SHARED])]
|
IN your rexx exec you can code
Code: |
select
when pfkey = PF01 then
<define activity for pf01 >
when pfkey = PF02 then
<define activity for pf02 >
...
otherwise
<define some other action >
end
|
Check this link for a detailed explanation of keylist command
http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/ISPZDG30/7.1.14?DT=20040720211441
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
bade_miya Beginner

Joined: 10 Dec 2003 Posts: 110 Topics: 38
|
Posted: Fri Aug 27, 2004 8:34 am Post subject: |
|
|
Thanks Kolusu,
Thank you very much. This will serve my purpose.
thanks
bade_miya. |
|
Back to top |
|
 |
|
|