QSO Exists for a Call Sign

Description

Provided with a valid call sign as text, the routine returns “true” if there is a logged QSO in the MacLoggerDX database or “false” if there is not.

Code

set QSOinLog to doesQSOexist(“K7DLX”)

on doesQSOexist(theCallSign as text)
tell application “MacLoggerDX”
exists qso theCallSign
end tell
end doesQSOexist