Date
1 - 10 of 10
How to reset DXKeeper report font?
Dave AA6YQ
+ AA6YQ comments below
I inadvertently changed the font of my DXKeeper’s DXCC Progress Report to a “variable width font”. All of the DXCC Report columns no longer line up.
How do I change the DXCC Progress back to a “monospaced font.”
+ In whichever application you're using to view the report - I'll assume Notepad - select all of the text by striking CTRL-A, and then use the Format menu's Font menu to choose the desired font.
73,
Dave, AA6YQ
I inadvertently changed the font of my DXKeeper’s DXCC Progress Report to a “variable width font”. All of the DXCC Report columns no longer line up.
How do I change the DXCC Progress back to a “monospaced font.”
+ In whichever application you're using to view the report - I'll assume Notepad - select all of the text by striking CTRL-A, and then use the Format menu's Font menu to choose the desired font.
73,
Dave, AA6YQ
ART W2NRA
Thank you, Dave. That worked.
toggle quoted message
Show quoted text
73, Art W2NRA
CWOPS OPS #1955
On Mar 18, 2023, at 5:33 PM, Dave AA6YQ <aa6yq@...> wrote:
+ AA6YQ comments below
I inadvertently changed the font of my DXKeeper’s DXCC Progress Report to a “variable width font”. All of the DXCC Report columns no longer line up.
How do I change the DXCC Progress back to a “monospaced font.”
+ In whichever application you're using to view the report - I'll assume Notepad - select all of the text by striking CTRL-A, and then use the Format menu's Font menu to choose the desired font.
73,
Dave, AA6YQ
Hi Art,
Could you filter your log by date (UTC Filter in ADV) and then modify the QSO's in the log panel with the contest ID, and then use "Modify QSO's in log page display"?
OK, if you have multiple contests, it may take a bit of time, but that would accomplish what you need.
73 de Phil GU0SUP
toggle quoted message
Show quoted text
Could you filter your log by date (UTC Filter in ADV) and then modify the QSO's in the log panel with the contest ID, and then use "Modify QSO's in log page display"?
OK, if you have multiple contests, it may take a bit of time, but that would accomplish what you need.
73 de Phil GU0SUP
-----Original Message-----
From: "ART W2NRA via groups.io" <w2nra@...>
Sent: Friday, 24 March, 2023 16:16
To: DXLab@groups.io
Subject: Re: [DXLab] How to reset DXKeeper report font?
Help!
I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.
I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.
73, Art W2NRA
CWOPS OPS #1955
From: "ART W2NRA via groups.io" <w2nra@...>
Sent: Friday, 24 March, 2023 16:16
To: DXLab@groups.io
Subject: Re: [DXLab] How to reset DXKeeper report font?
Help!
I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.
I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.
73, Art W2NRA
CWOPS OPS #1955
Joe Subich, W4TV
But I cannot get ‘tx info’ data to filter my log."TX Info" (the *sent* contest exchange) is ADIF item
STX_STRING.
I would expect you will need an SQL filter something like:
LEN(CONTEST_ID)>0 and LEN(STX_STRING)=0
or:
Contest_ID <> '' and STX_STRING = ''
73,
... Joe, W4TV
On 3/24/2023 12:16 PM, ART W2NRA via groups.io wrote:
Help!
I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.
I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.
73, Art W2NRA
CWOPS OPS #1955
ART W2NRA
Joe,
toggle quoted message
Show quoted text
I wasn’t being clear enough.
1. Only QSOs of non-CWOPS members are missing in the “Contest ID”
2. My Contest “TX-Info” is “ART 1955”. None of the non-CWOPS members have the Context “TX-Info” listed.
It seems I cannot filter to get it right.
Thank you again for your help!
73, Art W2NRA
CWOPS OPS #1955
On Mar 24, 2023, at 12:47 PM, Joe Subich, W4TV <lists@...> wrote:
> But I cannot get ‘tx info’ data to filter my log.
"TX Info" (the *sent* contest exchange) is ADIF item
STX_STRING.
I would expect you will need an SQL filter something like:
LEN(CONTEST_ID)>0 and LEN(STX_STRING)=0
or:
Contest_ID <> '' and STX_STRING = ''
73,
... Joe, W4TV
On 3/24/2023 12:16 PM, ART W2NRA via groups.io wrote:Help!I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.73, Art W2NRACWOPS OPS #1955
Joe Subich, W4TV
If Contest_ID is blank, that is either
Contest_ID = '' or Len(Contest_ID) = 0
if the specific QSOs have "ART 1955" in the "TX info"
that is STX_String = 'ART 1955'
combine the two and you have:
Len(Contest_ID) = 0 and STX_String = 'ART 1955'
This is all in the DXKeeper Help files topic "Filtering the
Log Page Display with SQL"
73,
... Joe, W4TV
toggle quoted message
Show quoted text
Contest_ID = '' or Len(Contest_ID) = 0
if the specific QSOs have "ART 1955" in the "TX info"
that is STX_String = 'ART 1955'
combine the two and you have:
Len(Contest_ID) = 0 and STX_String = 'ART 1955'
This is all in the DXKeeper Help files topic "Filtering the
Log Page Display with SQL"
73,
... Joe, W4TV
On 3/24/2023 4:12 PM, ART W2NRA via groups.io wrote:
Joe,
I wasn’t being clear enough.
1. Only QSOs of non-CWOPS members are missing in the “Contest ID”
2. My Contest “TX-Info” is “ART 1955”. None of the non-CWOPS members have the Context “TX-Info” listed.
It seems I cannot filter to get it right.
Thank you again for your help!
73, Art W2NRA
CWOPS OPS #1955On Mar 24, 2023, at 12:47 PM, Joe Subich, W4TV <lists@...> wrote:
But I cannot get ‘tx info’ data to filter my log."TX Info" (the *sent* contest exchange) is ADIF item
STX_STRING.
I would expect you will need an SQL filter something like:
LEN(CONTEST_ID)>0 and LEN(STX_STRING)=0
or:
Contest_ID <> '' and STX_STRING = ''
73,
... Joe, W4TV
On 3/24/2023 12:16 PM, ART W2NRA via groups.io wrote:Help!
I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.
I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.
73, Art W2NRA
CWOPS OPS #1955
ART W2NRA
Hi Phil,
toggle quoted message
Show quoted text
I have over 40,000 CWOPS CWT QSOs in about 150 contests per year over a 6 year period.
It’s a really fun (3 contests a week) event.
Thank you for your email.
73, Art W2NRA
CWOPS OPS #1955
On Mar 24, 2023, at 12:32 PM, Phil Cooper via groups.io <pcooper@...> wrote:
Hi Art,
Could you filter your log by date (UTC Filter in ADV) and then modify the QSO's in the log panel with the contest ID, and then use "Modify QSO's in log page display"?
OK, if you have multiple contests, it may take a bit of time, but that would accomplish what you need.
73 de Phil GU0SUP
-----Original Message-----
From: "ART W2NRA via groups.io" <w2nra@...>
Sent: Friday, 24 March, 2023 16:16
To: DXLab@groups.io
Subject: Re: [DXLab] How to reset DXKeeper report font?
Help!
I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.
I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.
73, Art W2NRA
CWOPS OPS #1955
ART W2NRA
Thank you, Joe. I think I’ve got it now. I’ll give it a try tomorrow.
toggle quoted message
Show quoted text
Again, thank you!
73, Art W2NRA
CWOPS OPS #1955
On Mar 24, 2023, at 4:51 PM, Joe Subich, W4TV <lists@...> wrote:
If Contest_ID is blank, that is either
Contest_ID = '' or Len(Contest_ID) = 0
if the specific QSOs have "ART 1955" in the "TX info"
that is STX_String = 'ART 1955'
combine the two and you have:
Len(Contest_ID) = 0 and STX_String = 'ART 1955'
This is all in the DXKeeper Help files topic "Filtering the
Log Page Display with SQL"
73,
... Joe, W4TV
On 3/24/2023 4:12 PM, ART W2NRA via groups.io wrote:Joe,I wasn’t being clear enough.1. Only QSOs of non-CWOPS members are missing in the “Contest ID”2. My Contest “TX-Info” is “ART 1955”. None of the non-CWOPS members have the Context “TX-Info” listed.It seems I cannot filter to get it right.Thank you again for your help!73, Art W2NRACWOPS OPS #1955On Mar 24, 2023, at 12:47 PM, Joe Subich, W4TV <lists@...> wrote:> But I cannot get ‘tx info’ data to filter my log."TX Info" (the *sent* contest exchange) is ADIF itemSTX_STRING.I would expect you will need an SQL filter something like:LEN(CONTEST_ID)>0 and LEN(STX_STRING)=0or:Contest_ID <> '' and STX_STRING = ''73,... Joe, W4TVOn 3/24/2023 12:16 PM, ART W2NRA via groups.io wrote:Help!I am trying to correct an error in my DXKeeper Log to include Contest ID QSOs that were omitted. Previous efforts have not worked.I’d like to copy QSOs with blank Contest IDs by filtering ‘tx info’ data. But I cannot get ‘tx info’ data to filter my log.73, Art W2NRACWOPS OPS #1955