Hi Ken,
I think I'm looking for the same problem.
If you know the folder where the file should be stored you can use "VerGetFileVersion()" or "FindFile()".
But I don't know how to find out if it is registered.
Example for VerGetFileVersion():
Code:
// Get file version
nResult = VerGetFileVersion(WINSYSDIR ^ "ActXPrxy.dll", svVersion );
if( nResult = FILE_NO_VERSION ) then
// --- version info not found ---
bFound = TRUE;
svVersion = "";
elseif( nResult = FILE_NOT_FOUND ) then
// --- file not found -----------
bFound = FALSE;
svVersion = "";
else
bFound = TRUE;
endif;
Please let me know if you solved this problem.
I'm looking for solutions for Windows Socket 2.0 and ActxPrxy.dll.
THX
Joerg