home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / cbtsampl.pak / CBT_UNIT.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  732 b   |  40 lines

  1. unit Cbt_unit;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Menus,
  6.   Buttons, StdCtrls;
  7.  
  8. type
  9.   TForm1 = class(TForm)
  10.     MainMenu1: TMainMenu;
  11.     File1: TMenuItem;
  12.     Edit1: TMenuItem;
  13.     Help1: TMenuItem;
  14.     Panel1: TPanel;
  15.     Panel2: TPanel;
  16.     BitBtn1: TBitBtn;
  17.     BitBtn4: TBitBtn;
  18.     Button1: TButton;
  19.     SpeedButton1: TSpeedButton;
  20.     SpeedButton2: TSpeedButton;
  21.     SpeedButton3: TSpeedButton;
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   Form1: TForm1;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. begin
  36.   RegisterClasses([TForm1, TMainMenu, TMenuItem, TPanel, TBitBtn]);
  37.   Form1 := TForm1.Create(Application);
  38. end.
  39.  
  40.