Einzelnen Beitrag anzeigen

Uwe.F.

Registriert seit: 19. Apr 2005
56 Beiträge
 
Delphi 7 Enterprise
 
#9

Re: Application.Terminate wird einfach ignoriert !! ???

  Alt 31. Jul 2007, 15:24
Hallo Kollegen,

es muss wohl an ADO liegen; folgende minimalistische Konstruktion erzeugt den erwähnten Fehler:

Code:
program Project1;
uses Forms, Unit1 in 'Unit1.pas';
begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  If not True then Application.Run;
end.
Code:
unit Unit1;
interface
uses Windows, Forms, DB, ADODB, Classes;
type
  TForm1 = class(TForm)
    ADOConnection1: TADOConnection;
    ADOTable1: TADOTable;
  private
  public
  end;
var Form1: TForm1;
implementation
end.
Fehlermeldung: sieh Anhang.

Vermutlich muss ich die ADO "irgendwie" stoppen ... hat jemand eine Idee, wie

Gruss,
Uwe
Miniaturansicht angehängter Grafiken
ado_272.jpg  
Uwe
  Mit Zitat antworten Zitat