home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 September
/
Chip_2001-09_cd1.bin
/
zkuste
/
delphi
/
kompon
/
d23456
/
RSRULER.ZIP
/
RulerDemo.dpr
< prev
next >
Wrap
Text File
|
2000-11-22
|
195b
|
14 lines
program RulerDemo;
uses
Forms,
DemoForm in 'DemoForm.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.