home *** CD-ROM | disk | FTP | other *** search
- /* This is a reader routine */
- /* Done in 30 minutes using AREXX with much laughter! */
- /* By J. Scott Thayer M.D. 9/22/88 */
-
- check = addlib('rexxsupport.library',0,-30,0)
- check = addlib('rexxarplib.library',0,-30,0)
- /**/
- arg x
- /**/
- if x = "" then do
- /**/
- dir = ""
- filename = ""
- x = getfile(315,70,dir,filename,"CLICK/DIRECTORY & FILE",)
- if x = "" then exit
- end
- /**/
- if ~exists(x) then do
- say "Hmmm... "||x||" isn't around."
- exit
- end
- /**/
- rd x /* Put YOUR favorite 'reader' program here. */
- exit
- /**/
-
- /* This is a 'run whatever' routine */
- /* By J. Scott Thayer M.D. 9/22/88 */
-
- check = addlib('rexxsupport.library',0,-30,0)
- check = addlib('rexxarplib.library',0,-30,0)
-
- arg x
-
- if x = "" then do
-
- dir = ""
- filename = ""
- x = getfile(315,70,dir,filename,"CLICK/DIRECTORY & FILE",)
- if x = "" then exit
- end
-
- run x
- exit
-