Einzelnen Beitrag anzeigen

ProPinball

Registriert seit: 24. Nov 2009
4 Beiträge
 
Delphi 10.3 Rio
 
#3

AW: Excel 2007 mit Delphi 7 - Fehler beim CreateOleObject

  Alt 1. Dez 2011, 15:28
Ergänz mal in deiner Projektdatei (*.dpr) vor der Zeile mit .CreateForm die Zeile
  Application.Initialize;
Ist so bereits drinnen:

program TestXLS;

uses
Forms,
Main in 'Main.pas' {MainWin};

{$R *.res}

begin
Application.Initialize;
Application.Title := 'Test';
Application.CreateForm(TMainWin, MainWin);
Application.Run;
end.
  Mit Zitat antworten Zitat