So etwas könnte klappen:
Delphi-Quellcode:
var
hOutlook: HWND;
begin
hOutlook := FindWindow('Outlook', nil);
if hOutlook = 0 then begin
// Outlook muss geöffnet werden
end;
end;
FindWindow findet das Fenster anhand seines Titels. "Outlook" ist hier nur eine Annahme. Musst prüfen, ob das Fenster wirklich Outlook heisst, sonst funktionierts nicht.