home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 2.0 - Programmer's Utilities Power Pack
/
Delphi 2.0 Programmer's Utilities Power Pack.iso
/
s_to_z
/
tpack
/
tpdll.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
|
1996-09-15
|
211 b
|
19 lines
library tpDLL;
uses Forms, About;
procedure AboutBox; export;
begin
With TAboutBox.Create(Application) do try
Execute
finally
free;
end;
end;
exports
AboutBox;
begin
end.