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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert CLIST Code to REXX

Status
Not open for further replies.

ktraywick

Programmer
Aug 12, 2005
2
CA
I'm trying to convert the following CLIST code to REXX.

ISPEXEC VGET (ZTRAIL) SHARED
SET FUNCVAR = &ZTRAIL
IF &FUNCVAR = &STR() THEN -
SET &FUNCVAR = &STR(MENU)
SET ZTRAIL = &STR()
ISPEXEC VPUT (ZTRAIL) SHARED

Any help would be greatly appreciated.

Regards,
Kent
 
Code:
address ISPEXEC
"VGET (ZTRAIL) SHARED"
funcvar = ztrail
if funcvar = "" then funcvar = "MENU"
ztrail = "" 
"VPUT (ZTRAIL) SHARED"

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

Part and Inventory Search

Sponsor

Back
Top