home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
calendar.lzh
/
CALEN.DPR
next >
Wrap
Text File
|
1995-05-03
|
198b
|
14 lines
program Calen;
uses
Forms,
Calunit in 'CALUNIT.PAS' {Form1};
{$R *.RES}
begin
Application.Title := 'Calendar';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.