home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / ctrlkit.zip / UNIT1.PAS < prev   
Pascal/Delphi Source File  |  1995-09-16  |  1KB  |  55 lines

  1. unit Unit1;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, ListHdr, StdCtrls, LBoxChk, TabBox,
  8.   LabelFrm, Buttons, GraphBtn, ColorBtn, Ctrl3d;
  9.  
  10. type
  11.   TForm1 = class(TForm)
  12.     Label3D1: TLabel3D;
  13.     FramedLabel1: TFramedLabel;
  14.     TabListBox1: TTabListBox;
  15.     CheckListBox1: TCheckListBox;
  16.     TabComboBox1: TTabComboBox;
  17.     ListHeader1: TTabListHeader;
  18.     ColorButton1: TColoredButton;
  19.     ColorButton2: TColoredButton;
  20.     BitBtn1: TBitBtn;
  21.     BitBtn2: TBitBtn;
  22.     ColorButton3: TColoredButton;
  23.     ColorButton6: TColoredButton;
  24.     ColorButton7: TColoredButton;
  25.     Label3D2: TLabel3D;
  26.     Button3D1: TButton3D;
  27.     Button3D2: TButton3D;
  28.     Button3D3: TButton3D;
  29.     ColoredButton1: TColoredButton;
  30.     Button3D4: TButton3D;
  31.     Label3D3: TLabel3D;
  32.     Button3D5: TButton3D;
  33.     Button3D6: TButton3D;
  34.     FramedLabel2: TFramedLabel;
  35.     procedure ColorButton7Click(Sender: TObject);
  36.   private
  37.     { Private declarations }
  38.   public
  39.     { Public declarations }
  40.   end;
  41.  
  42. var
  43.   Form1: TForm1;
  44.  
  45. implementation
  46.  
  47. {$R *.DFM}
  48.  
  49. procedure TForm1.ColorButton7Click(Sender: TObject);
  50. begin
  51.   Close;
  52. end;
  53.  
  54. end.
  55.