home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of the Best
/
_.img
/
02192
/
logbook.arc
/
LZ60.PRG
< prev
next >
Wrap
Text File
|
1987-12-14
|
1KB
|
51 lines
*LZ60 SCAN LOG FOR LZ60 AWARD REQUIREMENTS
? 'LZ60 AWARD CONTACTS/POINTS SUMMARY'
ACCEPT 'Do you want Hard Copy (Y/N) ? ' TO pf
pf = LEFT(pf,1)
IF pf = 'Y'
SET PRINT ON
ENDIF
USE &logbook INDEX &logndx
FIND LZ
STORE 0 TO points
STORE 0 TO spoints
CLEAR
? ' LZ 60 AWARD CONTACTS '
? ' CALL DATE TIME BD TX RX MODE '
?? 'POWER COMMENTS POINTS'
? '----------------------------------------------------------------------'
DO WHILE call = 'LZ' .AND. .NOT. EOF()
* date has to be in yy/mm/dd format
IF date >= '86/07/01' .AND. date <= '86/12/31'
IF call = 'LZ6'
STORE 6 TO points
ELSE
STORE 1 TO points
ENDIF
STORE spoints + points TO spoints
? call,date,time,band,tx,rx,mode,power,comments,points
STORE CALL TO ncall
STORE band TO nband
DO WHILE call = ncall .AND. .NOT. EOF()
* .AND. band = nband
* if same call on different bands is allowed
* SKIP DUPES
SKIP
ENDDO
IF .NOT. EOF()
SKIP -1
ENDIF
ENDIF
SKIP
ENDDO
USE
? '-----------------------------------------------------------------------'
? 'TOTAL POINTS = ',spoints
IF pf = 'Y'
eject
SET PRINT OFF
endif
RELEASE spoints,points,ncall,nband,pf
WAIT
RETURN