You can use the method of getting a file version information. First we'd get iexplore.exe path.
function GetIEPath: string;
var
Reg: TRegistry;
Len: Integer;
begin
Result := '';
Reg := TRegistry.Create;
with Reg do
begin
try
RootKey := HKEY_CLASSES_ROOT;
OpenKeyReadOnly('CLSID\{0002DF01-0000-0000-C000-000000000046}\LocalServer32');
try
Result := ReadString('');
finally
CloseKey;
Len := Length(Result);
if Len >= 2 then
begin
if(Result[Len] = '"') then
Delete(Result, Len, 1);
if(Result[1] = '"') then
Delete(Result, 1, 1);
end
else
begin
Result := '';
end;
end;
finally
Free;
end;
end;
end;
{0002DF01-0000-0000-C000-000000000046} is the CLSID for Internet Explorer.
The default key value for LocalServer32 is iexplore.exe path.
Then, we use some API calls, as demonstrated by Simon Grossenbacher, on this link, to get a file version info. Modifying his function, we get to this:
function GetIEVersion: string;
var
IEPath: string;
VerInfoSize: DWORD;
VerInfo: Pointer;
VerValueSize: DWORD;
VerValue: PVSFixedFileInfo;
Dummy: DWORD;
begin
Result := '0';
IEPath := GetIEPath;
if IEPath = '' then
Exit;
VerInfoSize := GetFileVersionInfoSize(PChar(IEPath), Dummy);
if VerInfoSize = 0 then
Exit;
GetMem(VerInfo, VerInfoSize);
GetFileVersionInfo(PChar(IEPath), 0, VerInfoSize, VerInfo);
VerQueryValue(VerInfo, '\', Pointer(VerValue), VerValueSize);
with VerValue^ do
begin
Result := IntToStr(dwFileVersionMS shr 16);
Result := Result + '.' + IntToStr(dwFileVersionMS and $FFFF);
Result := Result + '.' + IntToStr(dwFileVersionLS shr 16);
Result := Result + '.' + IntToStr(dwFileVersionLS and $FFFF);
end;
FreeMem(VerInfo, VerInfoSize);
end;
Then, you just use, for example, this:
ShowMessage(GetIEVersion);
iexplore.exe, then you can get the file version from the EXE. – Jerry Dodge Oct 4 '12 at 0:22something like thisand ask forshdocvw.dlllibrary. – TLama Oct 4 '12 at 0:26this articleis wrong (or maybe just outdated). – TLama Oct 4 '12 at 0:45