home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 1
/
HamRadio.cdr
/
log
/
logbook
/
dxccsb.prg
< prev
next >
Wrap
Text File
|
1986-04-23
|
512b
|
22 lines
*DXCCSB GENERATES A DXCC FILE for A SINGLE BAND BY JOE KASSER 1985
*ASSUMES DXCC DBF IS CREATED
ERASE
STORE ' ' TO thisband
ACCEPT 'What BAND is the DXCC file for ? ' TO thisband
STORE thisband + 'DXCC' TO dxcc
STORE ' ' TO pf
ACCEPT 'Do you want hard copy ? ' TO pf
IF pf = 'Y'
ACCEPT 'Do you want all Prefixes, Worked or Qsl-d (P W or Q) ' TO choice
ENDIF
DO DXCCMB
* NOW PUT DATA IN THE DATABASE
IF pf = 'Y'
DO DXCCPRNT
ENDIF
RELEASE thisband
RETURN