home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Runimage
/
Delphi50
/
Demos
/
AppEvents
/
appevents.dpr
next >
Wrap
Text File
|
1999-08-11
|
196b
|
14 lines
program AppEvents;
uses
Forms,
main in 'main.pas' {MainForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.