Creating your own FREQ format
for DXbase Labels/QSL Cards - by WA6AXE


The FREQ field format is currently provided as (i.e.: 21295.00)

If the DXbase user wants to have the FREQ field on their Label or QSL card as (i.e.: 21.295),
the most straight-forward method would be to use the following formula :

Fstr$(Val(FREQ)/1000,"-----&.###")

The above formula would be for a 1-QSO label/qslcard. If you were going to have multiple
QSOs on each label or qsl card, then you would have the following (example for 3-QSO label/card):

Fstr$(Val(FREQ)/1000,"-----&.###")      note: this is the FREQ textbox contents for the 1st QSO data line
Fstr$(Val(FREQ2)/1000,"-----&.###")      note: this is the FREQ textbox contents for the 2nd QSO data line
Fstr$(Val(FREQ3)/1000,"-----&.###")      note: this is the FREQ textbox contents for the 3rd QSO data line

Within the HF spectrum, this conditional coding for the textbox FREQ field, will convert
the 21295.00 to 21.295; and, also convert frequencies such as 7235.00 to 7.235