home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / megapanl.exe / SAMPLE.ZIP / TEST1.PAS < prev    next >
Pascal/Delphi Source File  |  1996-04-30  |  888b  |  45 lines

  1. unit Test1;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, ExtCtrls, MegaPanl, Mask, TabNotBk, Buttons,
  8.   Outline, Grids, DBCtrls, DBLookup, DBGrids, DB, DBTables;
  9.  
  10. type
  11.   TForm1 = class(TForm)
  12.     MegaPanel1: TMegaPanel;
  13.     MegaPanel2: TMegaPanel;
  14.     Edit2: TEdit;
  15.     Memo2: TMemo;
  16.     ComboBox2: TComboBox;
  17.     MaskEdit1: TMaskEdit;
  18.     MegaPanel3: TMegaPanel;
  19.     Edit1: TEdit;
  20.     Memo1: TMemo;
  21.     ComboBox1: TComboBox;
  22.     MaskEdit2: TMaskEdit;
  23.     MegaPanel4: TMegaPanel;
  24.     MegaPanel5: TMegaPanel;
  25.     Edit3: TEdit;
  26.     Memo3: TMemo;
  27.     MegaPanel6: TMegaPanel;
  28.     Edit4: TEdit;
  29.     Memo4: TMemo;
  30.     MaskEdit3: TMaskEdit;
  31.   private
  32.     { Private declarations }
  33.   public
  34.     { Public declarations }
  35.   end;
  36.  
  37. var
  38.   Form1: TForm1;
  39.  
  40. implementation
  41.  
  42. {$R *.DFM}
  43.  
  44. end.
  45.