-
WSDavidHLevin
AskWoody LoungerHi Mark,
I was wondering whether your revised SQL accounts for a space between a semicolon and the colour following it.Dave
(Edited to remove a bunch of stupid stuff I wrote.)
-
WSDavidHLevin
AskWoody Lounger“This part of the application is actually to do with selecting personnel for various tasks requiring various skills.”
A consequence of this is that if any skill is a substring of at least one other skill, as in “typing” and “light typing”, then the elegant (in my opinion) solution suggested by MarkLiquorman might sometimes fetch skills that aren’t germane.
Dave
-
WSDavidHLevin
AskWoody LoungerHi Murgatroyd,
Having to parse data that’s fetched from the Item table could have been avoided if the Item table had the same columns as the desired result of your Step 1, that is, if it consisted of the fields Item, Memo, and Color. For example, two of the rows would have been and .Was there a reason for the Item table’s having its actual layout?
Dave
-
WSDavidHLevin
AskWoody Lounger“Is Snagit a proven safe website?”
I don’t know how we can ever be sure that a website that is “safe” today will not be infected tomorrow. But the product (Snagit) and its manufacturer (TechSmith) have apparently been around for decades.
You could do an internet search on “snagit user reviews” and factor the results into your assessment of safety.
Dave
-
WSDavidHLevin
AskWoody LoungerHi PCL,
Snagit is claimed to do what you described.https://www.techsmith.com/snagit.html
Hope this helps,
Dave -
WSDavidHLevin
AskWoody LoungerHi jlwood44,
I agree with Rui that “find duplicates” is apparently being used here in a way for which it wasn’t really intended.Also, the tables might have been designed to be more robust. Suppose a player had a given three-game FTM sequence occur more than once in a season, such as 12 in game 3, 9 in game 4, and 10 in game 5 and then 12 in game 17, 9 in game 18, and 10 in game 19. This could be accommodated if an additional field that I’ll call g1_number were in the table that contains the FTM triplets. This would allow and to coexist.
These entries wouldn’t be “duplicates”; they would be in conformance with the table layout. This representation would show where a player achieved a given three-day total more than once in a season, but you could still obtain one query row by including the appropriate criteria in the select statement, and your select statement could specify that the results were to be sorted descending by year.
Perhaps if you posted the present tables and explained what the FTM data are used for, we would be able to offer more specific suggestions.
Dave
-
WSDavidHLevin
AskWoody LoungerHi jlwood44,
I’m not sure why you mention “index,” the purpose of which is to allow the database management system to more quickly fetch database rows that match the query criteria. A database would have to be quite large before the overhead of creating an index would be outweighed by the benefit.Also, perhaps you could more clearly explain what you consider “duplicate,” that is, what field(s) you want to essentially be the unique identifier. Would it be player and year, so that there would be only one result for , namely, the result where free throws made over the three games was highest for that combination of player and year? If there were several rows for a given player and year that had the same three-game sum (as for ), which one would you want selected?
It might help also if you provided the query statement(s) you’re using.
Hope this helps,
Dave -
WSDavidHLevin
AskWoody LoungerThe line segment from the midpoint of the diameter to the midpoint of the chord forms one leg of a right triangle whose other leg goes from the midpoint of the chord to one end of the chord and whose hypotenuse is r centimeters. I believe that the length of the former leg would be the square root of (r**2 – (2/3r)**2), or r/3 times the square root of 5, centimeters.
-
WSDavidHLevin
AskWoody LoungerDecember 9, 2015 at 6:56 pm in reply to: Preventing Duplicate Entries in Continuous subform #1541206That’s great. Would you like to share your solution here, in case someone else encounters the problem and looks in this thread for help.
-
WSDavidHLevin
AskWoody LoungerDecember 8, 2015 at 6:36 pm in reply to: Preventing Duplicate Entries in Continuous subform #1541043Hi simsima,
Welcome to the forum.Just to be sure the problem is clear, could you confirm which of the following scenarios (each starting from a “clean slate”) trigger the msgbox.
A. item_no_IM 0 followed by item_no_IM 0
B. item_no_IM 0 followed by item_no_IM 1
C. item_no_IM 1 followed by item_no_IM 0
D. item_no_IM 1 followed by item_no_IM 1Dave
-
WSDavidHLevin
AskWoody LoungerAugust 6, 2015 at 1:04 pm in reply to: Macro to add quote marks to unquoted bold words e.g. definitions in legal document Word 2010 #1519994Hi Lady-Laughsalot,
If a document has been impeccably formatted (e.g., no bold phrase has a leading bold space or trailing bold space), a macro having the following logical structure might work.# Start
Go to top of document
Search down for bold character
Repeat until Not Found
[INDENT]Insert quotation mark just before character
Search down for non-bold character
Search up for bold character
Insert quotation mark just after character
Search down for bold character[/INDENT]
End Repeat
# EndIf two or more “consecutive” table cells might be bold, the above logic might fail to insert the “intermediate” quotation marks, in which case you might then run a macro that’s something like the following.
# Start
For all tables
[INDENT]For all cells
[INDENT]If the first character in the cell isn’t a quotation mark
[INDENT]Then insert a quotation mark before the character[/INDENT]
If the last character in the cell isn’t a quotation mark
[INDENT]Then insert a quotation mark after the character[/INDENT][/INDENT]
End for[/INDENT]
End for
# EndHope this helps,
Dave -
WSDavidHLevin
AskWoody LoungerI wasn’t sure whether this fairly lengthy chain of reasoning is what you’re looking for. Anyway, in trying to determine the pairings, 18-7, 17-8, and 16-9 are forced (being that 18+17 falls short of 36). (I soon realized that 15 through 10 could be paired with 1 through 6, respectively, but that doesn’t prove that there are no other solutions, hence the following.) This forces 2 to be paired with 14 (because 7 is taken), which in turn forces 11 to be paired with 5 (because 14 is taken), which in turn forces 4 to be paired with 12 (because 5 is taken), which in turn forces 13 to be paired with 3 (because 12 is taken), which in turn forces 6 to be paired with 10 (because 3 is taken), which leaves 1 and 15.
-
WSDavidHLevin
AskWoody LoungerHi Murgatroyd,
From your description, it seems that NotesDateTime is dependent solely on OrderID. Therefore, even though NotesDateTime is “about” the notes rather than the order, I’d be inclined to put it in the Orders table rather than the Notes table, which not coincidentally would address the issue you’re having with where that information appears on the report.Dave
-
WSDavidHLevin
AskWoody LoungerHi Slovey,
I see that your original post containsTestDropDown.htm code
…but your php script fragment is preceded by “PHPTest.php code”.
I wasn’t sure if these names were literally those being used in your test environment.
Dave
-
WSDavidHLevin
AskWoody LoungerPosts on this forum aren’t subject to formal peer review with respect to their substantive content. If the lack of formal peer review were sufficient reason to discount even an informed opinion, then I’m not sure what value there would be in this forum.
Dave
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
89 million Steam account details just got leaked,
by
Alex5723
3 hours, 36 minutes ago -
KB5058405: Linux – Windows dual boot SBAT bug, resolved with May 2025 update
by
Alex5723
3 hours, 44 minutes ago -
A Validation (were one needed) of Prudent Patching
by
Nibbled To Death By Ducks
3 hours, 53 minutes ago -
Master Patch Listing for May 13, 2025
by
Susan Bradley
4 hours, 26 minutes ago -
Installer program can’t read my registry
by
Peobody
4 hours, 59 minutes ago -
How to keep Outlook (new) in off position for Windows 11
by
EspressoWillie
17 hours, 14 minutes ago -
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
14 hours, 58 minutes ago -
False error message from eMClient
by
WSSebastian42
14 hours, 52 minutes ago -
Awoke to a rebooted Mac (crashed?)
by
rebop2020
23 hours, 57 minutes ago -
Office 2021 Perpetual for Mac
by
rebop2020
1 day, 1 hour ago -
AutoSave is for Microsoft, not for you
by
Will Fastie
58 minutes ago -
Difface : Reconstruction of 3D Human Facial Images from DNA Sequence
by
Alex5723
1 day, 4 hours ago -
Seven things we learned from WhatsApp vs. NSO Group spyware lawsuit
by
Alex5723
5 hours, 43 minutes ago -
Outdated Laptop
by
jdamkeene
1 day, 10 hours ago -
Updating Keepass2Android
by
CBFPD-Chief115
1 day, 15 hours ago -
Another big Microsoft layoff
by
Charlie
1 day, 15 hours ago -
PowerShell to detect NPU – Testers Needed
by
RetiredGeek
18 hours, 37 minutes ago -
May 2025 updates are out
by
Susan Bradley
8 hours, 14 minutes ago -
Windows 11 Insider Preview build 26200.5600 released to DEV
by
joep517
1 day, 21 hours ago -
Windows 11 Insider Preview build 26120.3964 (24H2) released to BETA
by
joep517
1 day, 21 hours ago -
Drivers suggested via Windows Update
by
Tex265
1 day, 21 hours ago -
Thunderbird release notes for 128 esr have disappeared
by
EricB
1 day, 18 hours ago -
CISA mutes own website, shifts routine cyber alerts to X, RSS, email
by
Nibbled To Death By Ducks
2 days, 4 hours ago -
Apple releases 18.5
by
Susan Bradley
1 day, 22 hours ago -
Fedora Linux 40 will go end of life for updates and support on 2025-05-13.
by
Alex5723
2 days, 5 hours ago -
How a new type of AI is helping police skirt facial recognition bans
by
Alex5723
2 days, 6 hours ago -
Windows 7 ISO /Windows 10 ISO
by
ECWS
14 hours, 35 minutes ago -
No HP software folders
by
fpefpe
2 days, 13 hours ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
1 day, 11 hours ago -
Stay connected anywhere
by
Peter Deegan
2 days, 19 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.