home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 April A
/
Pcwk4a98.iso
/
PROGRAM
/
DELPHI16
/
Calendar
/
CALEN.DPR
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
|
1995-05-03
|
198 b
|
14 lines
program Calen;
uses
Forms,
Calunit in 'CALUNIT.PAS' {Form1};
{$R *.RES}
begin
Application.Title := 'Calendar';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.