home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / TEECHART / Delphi1_And_Delphi2 / EXAMPLES / OTHER / NEURAL / UEXPLAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-10-24  |  662 b   |  33 lines

  1. {**********************************************}
  2. {   TeeChart                                   }
  3. {   Neural Net Example                         }
  4. {   Copyright (c) 1996 by David Berneda        }
  5. {**********************************************}
  6. unit Uexplain;
  7.  
  8. interface
  9.  
  10. uses
  11.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  12.   Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
  13.  
  14. type
  15.   TExplain = class(TForm)
  16.     Memo1: TMemo;
  17.     Panel1: TPanel;
  18.     BitBtn1: TBitBtn;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   Explain: TExplain;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. end.
  33.