TXED SUGGESTIONS
30-Nov-88 13:44:56
Sb: #3447-TXED SUGGESTIONS
Fm: Art Steinmetz 76044,3204
To: Art Steinmetz 76044,3204
Whoops. The first line in the program must be a comment, natch. Here it
is again so you can just capture it and stuff in in REXX:
if ~show('L','rexxarplib.library') then do
if ~addlib('rexxarplib.library',0,-30,0) then do
say 'ARP support library not in LIBS: directory!'
exit 10
end end
parse arg filename . /* note: the period is necessary */
if length(filename) > 1 then
'GET' filename else do
/* bring up the cheath file requestor */
filename = getfile(20,20,,, "Enter name of file to insert",)
/* suppose the user declines to make a selection? */
if length(filename) < 1 then
'msg' 'NO FILE NAME SPECIFIED !'
else
'GET' filename end exit