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

  1. unit Test4;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, MegaPanl, Mask, StdCtrls;
  8.  
  9. type
  10.   TForm4 = class(TForm)
  11.     MegaPanel1: TMegaPanel;
  12.     MegaPanel2: TMegaPanel;
  13.     MegaPanel3: TMegaPanel;
  14.     Edit2: TEdit;
  15.     MemoBox2: TMemo;
  16.     ComboBox2: TComboBox;
  17.     MaskEdit1: TMaskEdit;
  18.     Edit1: TEdit;
  19.     Memo1: TMemo;
  20.     ComboBox1: TComboBox;
  21.     MaskEdit2: TMaskEdit;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   Form4: TForm4;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. end.
  36.