Thema: Delphi close in OnCreate

Einzelnen Beitrag anzeigen

Benutzerbild von Evian
Evian

Registriert seit: 10. Apr 2003
Ort: Berlin
485 Beiträge
 
Delphi 6 Professional
 
#9

Re: close in OnCreate

  Alt 1. Apr 2004, 18:51
Zitat von toms:
Warum soll eine Form erstellt werden, wenn sie evtl. gar nie angezeigt wird??
Klever mitgedacht

kannst es auch so machen ->

Code:

program Project1;

uses
  Forms,
  SysUtils,
  Unit1 in 'Unit1.pas' {Form1};

{$R *.res} 


begin
  if not FileExists('{dateiname}') then
    Exit ELSE
  BEGIN
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
  END;
end.
dann wird nur die Form erstellt, wenn die Datei da ist.
-> www.Phillsoft.de

Ich bin nun Mathematiker, aber meine Freundin bleibt trotzdem unberechenbar!
  Mit Zitat antworten Zitat