Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi Läuft Outlook? (https://www.delphipraxis.net/83067-laeuft-outlook.html)

PeterPanino 26. Dez 2006 20:12


Läuft Outlook?
 
Hallo,

ich möchte folgenden Code verwenden, um zu testen, ob Microsoft Outlook gerade läuft oder nicht:

Delphi-Quellcode:
uses
  ComObj, ActiveX;

function IsObjectActive(ClassName: string): Boolean;
var
  ClassID: TCLSID;
  Unknown: IUnknown;
begin
  try
    ClassID := ProgIDToClassID(ClassName);
    Result := GetActiveObject(ClassID, nil, Unknown) = S_OK;
  except
    // raise;
    Result := False;
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  if IsObjectActive('Word.Application') then ShowMessage('Word is running !');
  if IsObjectActive('Excel.Application') then ShowMessage('Excel is running !');
  if IsObjectActive('Outlook.Application') then ShowMessage('Outlook is running !');
  if IsObjectActive('Access.Application') then ShowMessage('Access is running !');
  if IsObjectActive('Powerpoint.Application') then ShowMessage('Powerpoint is running !');
end;
//Quelle: [url]http://www.swissdelphicenter.ch/torry/showcode.php?id=294[/url]
Kann man davon ausgehen, dass dies bei ALLEN Versionen von Outlook funktioniert?

Bernhard Geyer 26. Dez 2006 20:20

Re: Läuft Outlook?
 
Nach der Theorie: Ja.
Eigentlich sollten neuere Versionen von Programmen COM-Technisch kompatible zu alten Schnittstellen sein. Und dein Test läuft über COM.

Aber man weis ja wie genau es SW-Hersteller manchmal mit Schnittstellen und Altkompatibliät nehmen.


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