Registriert seit: 23. Mai 2011
Ort: Furth im Wald
308 Beiträge
Delphi 11 Alexandria
|
AW: Feststellen Auslesen ob ActiveX Control registriert
1. Aug 2012, 12:51
Folgende Funktion stammt von Luckie:
Delphi-Quellcode:
function ProgIDExists( const ProgID:WideString):Boolean;
var
tmp : TGUID;
begin
Result := Succeeded(CLSIDFromProgID(PWideChar(ProgID), tmp));
end;
// Beispiel:
// Gibt zurück ob das Mozilla ActiveX Objekt installiert ist
if ProgIDExists(' Mozilla.Browser.1') then
ShowMessage(' Ist installiert :-)');
|