home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / AddOns / Components / Cell Control / DATA1.CAB / DELPHIDM / Tempunit.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-01-11  |  516 b   |  32 lines

  1. unit Tempunit;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls, ComCtrls, OleCtrls, CELLLib_TLB;
  7.  
  8. type
  9.   TTemplate = class(TForm)
  10.     Panel1: TPanel;
  11.     Panel2: TPanel;
  12.     StatusBar1: TStatusBar;
  13.     Cell1: TCell;
  14.     Label1: TLabel;
  15.     BitBtn1: TBitBtn;
  16.     RichEdit1: TRichEdit;
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22.  
  23. var
  24.   Template: TTemplate;
  25.  
  26. implementation
  27.  
  28. {$R *.DFM}
  29.  
  30. end.
  31.  
  32.