![]() |
Prüfen ob Adobe Acrobat (Reader) installiert ist
Delphi-Quellcode:
function IsAcrobatInstalled: Boolean;
var reg: TRegistry; begin Result := false; reg := TRegistry.Create(KEY_READ); with reg do begin try RootKey := HKEY_CLASSES_ROOT; if OpenKey('CLSID\{CA8A9780-280D-11CF-A24D-444553540000}', False) then Result := true finally CloseKey; Free end end end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 06:07 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz