RexxCenter is updated with a memory leak fix when opening a rexx script. Also, EditAddFile now allows querying the files in the current project:
i = 1
DO FOREVER
NAME = editaddfile(, , i)
IF NAME == "" THEN LEAVE
SAY NAME
i = i + 1
END
i = 1
DO FOREVER
NAME = editaddfile(, "ICON", i)
IF NAME == "" THEN LEAVE
SAY NAME
i = i + 1
END
|