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

  1. unit Test8;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Buttons, ExtCtrls, MegaPanl, Menus, StdCtrls, DBCtrls,
  8.   DB, DBTables;
  9.  
  10. type
  11.   TForm8 = class(TForm)
  12.     MegaPanel1: TMegaPanel;
  13.     MegaPanel5: TMegaPanel;
  14.     SpeedButton5: TSpeedButton;
  15.     SpeedButton6: TSpeedButton;
  16.     SpeedButton7: TSpeedButton;
  17.     SpeedButton8: TSpeedButton;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.                       
  24. var
  25.   Form8: TForm8;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. end.
  32.