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!

WRITING A FILE WITH REXX 1

Status
Not open for further replies.

COLTRANE59

Technical User
Jul 11, 2005
1
IT
Hello ,

I have a problem writing a file with REXX . When I
intercept various variables in a line and I want write on a file and I want that the variable A must be at column 5 variable B must be at column 10 and variable C must be at column 20 , help me to do it!!

regards

coltrane59
 
Code:
line = Overlay ( A , line , 5  )
line = Overlay ( B , line , 10 )
line = Overlay ( C , line , 20 )

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

Part and Inventory Search

Sponsor

Back
Top