home *** CD-ROM | disk | FTP | other *** search
/ The Best of the Best / _.img / 02192 / logbook.arc / DXCCSB.PRG < prev    next >
Text File  |  1987-12-11  |  431b  |  17 lines

  1. *DXCCSB GENERATES A DXCC FILE for A SINGLE BAND BY JOE KASSER 1985
  2. *ASSUMES DXCC DBF IS CREATED
  3. CLEAR
  4. STORE '  ' TO thisband
  5. ACCEPT 'What BAND is the DXCC file for ? ' TO thisband
  6. STORE thisband + 'DXCC' TO dxcc
  7. STORE ' ' TO pf
  8. ACCEPT 'Do you want hard copy ? ' TO pf
  9. IF pf = 'Y'
  10.    ACCEPT 'Do you want all Prefixes, Worked or Qsl-d (P W or Q) ? ' TO choice
  11. ENDIF
  12. DO DXCCMB
  13. IF pf = 'Y'
  14.    DO DXCCPRNT
  15. ENDIF
  16. RETURN
  17.