Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TSO REXX / ISPF Panels

Status
Not open for further replies.

vhagopian

Programmer
Nov 12, 2002
9
US
When displaying an ISPF panel from REXX, i would like to set the cursor position on the panel. I would like the cursor to be sitting on the correct field after setting an error message for that field. Any info would be great.

Thanks
 
REXX is incidental here -- this is entirely the function of ISPF Services:
Code:
address ISPEXEC 
"DISPLAY PANEL("pnlname") CURSOR("csrfield")"
You can also set
Code:
.cursor = zork
as part of an IF-statement in the panel definition itself or you can use a VER-statement with the MSG subparameter.

Frank Clarke
Tampa Area REXX Programmers' Alliance
REXX Language Assn Listmaster
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top