Advertisement
Guest User

Unit2.pas

a guest
Jul 19th, 2017
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.64 KB | None | 0 0
  1. unit Unit2;
  2.  
  3. interface
  4.  
  5. uses
  6.   Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  7.   Vcl.Controls, Vcl.Forms, Vcl.Dialogs,
  8.   Vcl.ExtCtrls,
  9.   JvExExtCtrls, JvExtComponent, JvPanel, Vcl.ComCtrls,
  10.   System.ImageList, Vcl.ImgList, Vcl.ToolWin;
  11.  
  12. type
  13.   TForm2 = class(TForm)
  14.     tlbTest: TToolBar;
  15.     btnAirplane: TToolButton;
  16.     btnAutobus: TToolButton;
  17.     pnlTlbMruFavSep1a: TJvPanel;
  18.     btnSum: TToolButton;
  19.     ilToolbar: TImageList;
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   Form2: TForm2;
  28.  
  29. implementation
  30.  
  31. {$R *.dfm}
  32.  
  33. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement