home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 February
/
Chip_2004-02_cd1.bin
/
program
/
delphi
/
navody
/
d56
/
ec1vr2.exe
/
#setuppath#
/
Delphi
/
Prnplot
/
Prnplot.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
|
2003-12-09
|
355 b
|
18 lines
program Prnplot;
uses
Forms,
Main in 'Main.pas' {MainForm},
About in 'About.pas' {AboutBox},
Rep in 'Rep.pas' {RepForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TRepForm, RepForm);
Application.Run;
end.