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

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