Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Library: Windows API / MS.NET Framework API (https://www.delphipraxis.net/20-library-windows-api-ms-net-framework-api/)
-   -   Delphi Prüfen ob MacroMedia Flash installiert ist (https://www.delphipraxis.net/7394-pruefen-ob-macromedia-flash-installiert-ist.html)

chris 11. Aug 2003 11:47


Prüfen ob MacroMedia Flash installiert ist
 
Delphi-Quellcode:
function IsFlashInstalled: Boolean;
var reg: TRegistry;
begin
  Result := false;
  reg := TRegistry.Create(KEY_READ);
  with reg do
  begin
    try
      RootKey := HKEY_CLASSES_ROOT;
      if OpenKey('CLSID\{D27CDB6E-AE6D-11cf-96B8-444553540000}', False)
        then Result := true
    finally
      CloseKey;
      Free
    end
  end
end;

Basic-Master 11. Aug 2003 20:21

Re: Prüfen ob MacroMedia Flash installiert ist
 
hättest noch Uses (Registry) dazuschreiben können...


Alle Zeitangaben in WEZ +1. Es ist jetzt 23:45 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