(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
|
Re: close in OnCreate
1. Apr 2004, 17:48
Hi,
Mache die Überprüfung in der Projektedatei:
Delphi-Quellcode:
program Project1;
uses
Forms,
SysUtils,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
if not FileExists('{dateiname}') then
Exit;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Thomas
|