home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 October / Chip_2002-10_cd1.bin / zkuste / delphi / kolekce / d56 / FLEXCEL.ZIP / BiffEdit / USearchDialog.pas < prev    next >
Pascal/Delphi Source File  |  2002-05-12  |  1KB  |  55 lines

  1. unit USearchDialog;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls, Buttons;
  8.  
  9. type
  10.   TSearchDialog = class(TForm)
  11.     BitBtn1: TBitBtn;
  12.     Id: TEdit;
  13.     IdName: TEdit;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Bevel2: TBevel;
  17.     Shape1: TShape;
  18.     Edit1: TEdit;
  19.     Label4: TLabel;
  20.     Label5: TLabel;
  21.     Edit2: TEdit;
  22.     Shape2: TShape;
  23.     Shape3: TShape;
  24.     Edit3: TEdit;
  25.     Label6: TLabel;
  26.     Label7: TLabel;
  27.     Edit4: TEdit;
  28.     Shape4: TShape;
  29.     Edit5: TEdit;
  30.     Label8: TLabel;
  31.     Label9: TLabel;
  32.     Edit6: TEdit;
  33.     Label3: TLabel;
  34.     Label10: TLabel;
  35.     Label11: TLabel;
  36.     Label12: TLabel;
  37.     procedure BitBtn2Click(Sender: TObject);
  38.   private
  39.     { Private declarations }
  40.   public
  41.     { Public declarations }
  42.   end;
  43.  
  44. implementation
  45.  
  46. {$R *.DFM}
  47.  
  48. procedure TSearchDialog.BitBtn2Click(Sender: TObject);
  49. begin
  50.   Id.Text:='';
  51.   IdName.Text:='';
  52. end;
  53.  
  54. end.
  55.