home *** CD-ROM | disk | FTP | other *** search
- {**********************************************}
- { TeeChart }
- { Neural Net Example }
- { Copyright (c) 1996 by David Berneda }
- {**********************************************}
- unit Uexplain;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, Buttons, ExtCtrls;
-
- type
- TExplain = class(TForm)
- Memo1: TMemo;
- Panel1: TPanel;
- BitBtn1: TBitBtn;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Explain: TExplain;
-
- implementation
-
- {$R *.DFM}
-
- end.
-