root / delphi / HADP_Mar1997 / fishtank / RAD / fishtank.dpr Created by zope. Last modified 2004-07-15 05:32:40. |
Filename | fishtank.dpr |
---|---|
Size | 707 |
Content-type | text/plain |
|
//============================================================================== // Program: FishTank // // Purpose: RAD prototype for Fishtank demo app (no ABC's or other OO tech- // niques used in this version, beyond "normal" Delphi component- // based development.) // // Copyright: 1997, Palladion Software //============================================================================== program fishtank; uses Forms, ffishtnk in 'ffishtnk.pas' {frmFishtank}, About in 'about.pas' {AboutBox}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TfrmFishtank, frmFishtank); Application.CreateForm(TAboutBox, AboutBox); Application.Run; end.