home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
Runimage
/
Delphi50
/
Demos
/
Db
/
Ibdemo
/
EVENTS.DPR
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-11
|
259 b
|
15 lines
program Events;
uses
Forms,
Event1 in 'Event1.pas' {frmEvents},
Event2 in 'Event2.pas' {dmEvents};
{$R *.RES}
begin
Application.CreateForm(TdmEvents, dmEvents);
Application.CreateForm(TfrmEvents, frmEvents);
Application.Run;
end.