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 OLE ohne Form (https://www.delphipraxis.net/31436-ole-ohne-form.html)

adecke 9. Okt 2004 10:24


OLE ohne Form
 
Hallo,

folgender Code führt zu einer Exception: ..Exception der Klasse EOLESysError Meldung:CoInitialize worde nicht aufgerufen.

Delphi-Quellcode:
Program CrossWord;

Uses
   ComObj,
   SysUtils;

{$R *.res}

procedure SetWordSettings (sVersion:string);
Var
   WordApp:OLEVariant;
begin
   try
      WordApp := CreateOLEObject('Word.Application')
   except
      on E: Exception do begin
         E.Message := 'Word is not available';
   raise
   end;
end;

   try
      WordApp.Visible := True
      WordApp.Documents.Add;
   finally
      WordApp.Quit
   end;
end;

begin
   SetWordSettings('10');
end.
[edit=Christian Seehase]Delphi-Tags gesetzt. Bitte künftig selber machen. Danke. Mfg, Christian Seehase[/edit]

Generalissimo 9. Okt 2004 11:38

Re: OLE ohne Form
 
Ab Delphi 4 reicht es nicht mehr aus nur ComObj.pas einzubinden um die COM-Umgebung zu initialisieren.
Ab Delphi 4 muss man Application.Initialize aufrufen. Das erledigt das ganze dann. Da du ja eine Konsolenanwendung hast willst du sicher nicht unnötig die Forms.pas einbinden. Also musst du einen Ersatz für Application.Initialize bauen:

Lösung aus: aus COM/DCOM/COM+ von Andreas Kosch ISBN:3935042019 Seite 188

Dein Programm nun angepasst:

Delphi-Quellcode:
Program CrossWord;

Uses
ComObj,
SysUtils;

{$R *.res}

procedure SetWordSettings (sVersion:string);
Var
WordApp:OLEVariant;
begin
 try
  WordApp := CreateOLEObject('Word.Application')
 except on E: Exception do
  begin
   E.Message := 'Word is not available';
   raise
  end;
 end;
 try
  WordApp.Visible := True
  WordApp.Documents.Add;
 finally
  WordApp.Quit
 end;
end;

begin
if InitProc <> nil then TProcedure(InitProc);
SetWordSettings('10');
end.

Bernhard Geyer 9. Okt 2004 17:27

Re: OLE ohne Form
 
Es reicht (wie die Fehlermeldung schon sagt) CoInitialize aufzurufen. Ist AFAIK in ActiveX.pas. Am Ende solltest Du CoUninitialize aufrufen, um den Regeln von COM genüge zu tun.

adecke 12. Okt 2004 23:15

Re: OLE ohne Form
 
Hallo,

vielen Dank. Habe mich nicht früher gemeldet, da ich eigentlich mit einer Auto-Mail
gerechnet hatte. Egal super, das war genau das was ich brauchte.

gruss Andreas :bounce1:


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