D
David W. Fenton
All I can think of is that the search engine may have missed
another 1 somewhere, but why would the registry search turn up
confirmation?
What version of Windows were you running the search on? As I said
before, Vista and Win7 hide stuff unless you turn of UAC (which you
shouldn't). It's a problem, indeed.
It also means I have to do another round of testing of my FileSearch
replacement class module, as it breaks badly on Win7 (I haven't
tested it on Vista) because it's running without an admin token, so
if you search C:\ including subdirectories, it errors out repeatedly
in ways I can't quite figure out (if I remove the error handler, I
end up hitting errors that happen earlier in the process that when
the error handler is in place are skipped; Catch-22!). I am hoping
that I can use the File System Object instead of the built-in VBA
functions (e.g., replace Dir() with the corresponding FSO
functionality) and avoid the problem. But I'm worried about it -- it
may be that there is no way around the problem.
(for a description of my FileSearch class module and the reason why
I created it see:
http://dfenton.com/DFA/download/Access/FileSearch.html)