home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 April A
/
Pcwk4a98.iso
/
PROGRAM
/
DELPHI16
/
Calendar
/
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.