home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi 4 Bible
/
Delphi_4_Bible_Tom_Swan_IDG_Books_1998.iso
/
source
/
ABOUTEX
/
Aboutex.dpr
< prev
next >
Wrap
Text File
|
1995-09-02
|
256b
|
16 lines
program Aboutex;
uses
Forms,
Main in 'MAIN.PAS' {MainForm},
About in 'ABOUT.PAS' {AboutForm};
{$R *.RES}
begin
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutForm, AboutForm);
Application.Run;
end.