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

  1. unit Test5;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, MegaPanl, Buttons;
  8.  
  9. type
  10.   TForm5 = class(TForm)
  11.     Panel1: TPanel;
  12.     MegaPanel1: TMegaPanel;
  13.     MegaPanel2: TMegaPanel;
  14.     MegaPanel4: TMegaPanel;
  15.     MegaPanel5: TMegaPanel;
  16.     SpeedButton5: TSpeedButton;
  17.     SpeedButton6: TSpeedButton;
  18.     SpeedButton7: TSpeedButton;
  19.     SpeedButton8: TSpeedButton;
  20.     MegaPanel6: TMegaPanel;
  21.     SpeedButton9: TSpeedButton;
  22.     SpeedButton10: TSpeedButton;
  23.     SpeedButton11: TSpeedButton;
  24.     SpeedButton12: TSpeedButton;
  25.     MegaPanel7: TMegaPanel;
  26.   private
  27.     { Private declarations }
  28.   public
  29.     { Public declarations }
  30.   end;
  31.  
  32. var
  33.   Form5: TForm5;
  34.  
  35. implementation
  36.  
  37. {$R *.DFM}
  38.  
  39. end.
  40.