Palladion Software
user icon Guest

Created by zope. Last modified 2004-07-15 05:32:40.

File Properties

Filename fishtank.dpr
Size 707
Content-type text/plain

Download File

Download

//==============================================================================
// 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.