home *** CD-ROM | disk | FTP | other *** search
- SET SPLIT = OFF
- ****************************************
- * *
- * DUPS.PGM *
- * *
- * Prints line list to check for dups *
- * *
- ****************************************
-
-
-
- define year ## global
-
- cls
-
- echo
- echo DUPS.PGM
- echo
- echo Generates a DUPLICATE LINE LIST
- echo
- echo
- echo
-
- echo
- echo
- immedif (0=0) then year=?Hit return for this year or enter a past year: 19?
- echo
- echo
-
- immedif (year < 88 or year > 91) and year <> 0 then type "\07"
- immedif (year < 88 or year > 91) and year <> 0 then echo ERROR: Year must be between 88 and 91
-
- ? Return to continue, QUIT to abort. ?
-
- cls
- immedif (year < 88 or year > 91) and year <> 0 then run dups.PGM
-
- echo
- echo Reading data. Please wait.
- echo
-
- immedif (year = 0) then read GEPI
- immedif (year = 89) then read GEPI89
- immedif (year = 90) then read GEPI90
- immedif (year = 91) then read GEPI91
-
- cls
- echo
- echo
- echo
- select report >= "?Enter beginning date MM/DD/YY : ?"
- select report <= "? ending date MM/DD/YY : ?"
-
- cls
- echo
- echo Please wait. Reading data.
- echo
-
- ROUTE PRINTER
- set page = 60,133
- *hp laserjet condensed print code
- type "\027(s16.66H"
- *ibm/epson condensed print code
- *type "\15"
-
- set criteria = off
-
- cls
-
- title 1 "\cLine List For Duplicates Check"
- TITLE 2 " "
- title 3 "\cAs of @systemdate"
- TITLE 4 " "
-
- sort lastname disease
- cls
- list lastname firstname disease county age sex race onset
- newpage
-
- *hp laserjet reset printer defaults code
- type "\027E"
- *ibm/epson reset 10cpi code
- *type "\18"
-
- route screen
-
- echo
- echo
- ?Report complete. Press ENTER to return to menu.?
- quit