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 >
Wrap
Pascal/Delphi Source File
|
2002-05-12
|
1KB
|
55 lines
unit USearchDialog;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons;
type
TSearchDialog = class(TForm)
BitBtn1: TBitBtn;
Id: TEdit;
IdName: TEdit;
Label1: TLabel;
Label2: TLabel;
Bevel2: TBevel;
Shape1: TShape;
Edit1: TEdit;
Label4: TLabel;
Label5: TLabel;
Edit2: TEdit;
Shape2: TShape;
Shape3: TShape;
Edit3: TEdit;
Label6: TLabel;
Label7: TLabel;
Edit4: TEdit;
Shape4: TShape;
Edit5: TEdit;
Label8: TLabel;
Label9: TLabel;
Edit6: TEdit;
Label3: TLabel;
Label10: TLabel;
Label11: TLabel;
Label12: TLabel;
procedure BitBtn2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.DFM}
procedure TSearchDialog.BitBtn2Click(Sender: TObject);
begin
Id.Text:='';
IdName.Text:='';
end;
end.