home *** CD-ROM | disk | FTP | other *** search
- /*
- ** FieldBuster.fred.post
- **
- ** $VER: FieldBuster.fred.post 1.2.0 (24.10.93)
- **
- ** If the FieldBuster.fred script appears in the InvokeADPro list,
- ** this program will delete all temporary files generated in the
- ** FieldBusted.fred script.
- **
- ** This script requires FRED v1.4.0 (or higher) to run. Also required is
- ** ADPro v2.5.0 (or higher).
- **
- ** Copyright © 1992-1993 ASDG, Incorporated
- ** All Rights Reserved
- */
-
-
- ADDRESS "ADPro"
- OPTIONS RESULTS
-
- NL = '0A'X
- SQ = '27'X
- DQ = '22'X
- TRUE = 1
- FALSE = 0
- TempBustedFields = "T:TempBustedFields"
-
-
- /*
- ** Remove the temporary files.
- */
-
- ADDRESS COMMAND "Delete >NIL:" TempBustedFields
-
- EXIT 0
-