home *** CD-ROM | disk | FTP | other *** search
- {------------------------- READAREA -------------------------
-
- {This macro sends the extracted data to the screen or out to a text file
-
- {Sys determines how to output data
- PROMPT Prompt=`Send Output to a Text File Y-N` Var=#AN Typ=Swit
- If (#AN == 1), Goto File:
-
- {Sys outputs data to the screen
- LS Typ=Att Class=200 Del=\ \
- Goto End:
-
- {Sys outputs data to the specified text file.
- File:
- PROMPT Prompt=`Name of Text File` Var=#Name Typ=Str
- LS Typ=Att Class=200 Del=\ \ File=\#Name\
-
- End:
-
- RETURN
-