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

  1. unit Test7;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, ExtCtrls, DB, DBTables, Buttons, Tabs, Grids,
  8.   Outline, Mask, MegaPanl;
  9.  
  10. type
  11.   TForm7 = class(TForm)
  12.     MegaPanel1: TMegaPanel;
  13.     Label1: TLabel;
  14.     Bevel1: TBevel;
  15.     SpeedButton1: TSpeedButton;
  16.     SpeedButton2: TSpeedButton;
  17.     Button1: TButton;
  18.     Button2: TButton;
  19.     Edit1: TEdit;
  20.     Memo1: TMemo;
  21.     CheckBox1: TCheckBox;
  22.     CheckBox2: TCheckBox;
  23.     RadioButton1: TRadioButton;
  24.     RadioButton2: TRadioButton;
  25.     ListBox1: TListBox;
  26.     ComboBox1: TComboBox;
  27.     ScrollBar1: TScrollBar;
  28.     ScrollBar2: TScrollBar;
  29.     GroupBox1: TGroupBox;
  30.     TabSet1: TTabSet;
  31.     MaskEdit2: TMaskEdit;
  32.     Outline1: TOutline;
  33.     StringGrid1: TStringGrid;
  34.     Image1: TImage;
  35.     Notebook1: TNotebook;
  36.     Shape1: TShape;
  37.     Header1: THeader;
  38.     Panel1: TPanel;
  39.     Edit2: TEdit;
  40.     Button6: TButton;
  41.     Panel2: TPanel;
  42.     MegaPanel2: TMegaPanel;
  43.     Panel3: TPanel;
  44.     Button5: TButton;
  45.     MaskEdit1: TMaskEdit;
  46.     MegaPanel3: TMegaPanel;
  47.   private
  48.     { Private declarations }
  49.   public
  50.     { Public declarations }
  51.   end;
  52.  
  53. var
  54.   Form7: TForm7;
  55.  
  56. implementation
  57.  
  58. {$R *.DFM}
  59.  
  60. end.
  61.