Thema
:
Outlook Version ermitteln (Ohne OleObj)
Einzelnen Beitrag anzeigen
shmia
Registriert seit: 2. Mär 2004
5.508 Beiträge
Delphi 5 Professional
#
4
Re: Outlook Version ermitteln (Ohne OleObj)
1. Sep 2008, 17:56
zusammenfalten
·
markieren
Delphi-Quellcode:
function
ProgIDExists(
const
ProgID:WideString):Boolean;
var
tmp : TGUID;
begin
Result := Succeeded(CLSIDFromProgID(PWideChar(ProgID), tmp));
end
;
if
ProgIDExists('
Outlook.Application.12
')
then
ShowMessage('
Outlook Version 12 installiert
')
else
if
ProgIDExists('
Outlook.Application.11
')
then
ShowMessage('
Outlook Version 11 installiert
')
// Outlook 2003?
Andreas
Zitat
shmia
Öffentliches Profil ansehen
Mehr Beiträge von shmia finden