home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
misc
/
objects
/
listsub
/
listsub.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-03-21
|
253 b
|
16 lines
program Listsub;
{ Program copyright (c) 1995 by Charles Calvert }
{ Project Name: LISTSUB }
uses
Forms,
Main in 'MAIN.PAS' {Form1},
Mylist in 'MYLIST.PAS';
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.