Find.h
上传用户:szb0815
上传日期:2007-06-13
资源大小:338k
文件大小:1k
- //---------------------------------------------------------------------------
- #ifndef FindH
- #define FindH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- //---------------------------------------------------------------------------
- class TFindForm : public TForm
- {
- __published: // IDE-managed Components
- TEdit *FindStringEdit;
- TButton *FindButton;
- TButton *FindNextButton;
- void __fastcall FindButtonClick(TObject *Sender);
- void __fastcall FindNextButtonClick(TObject *Sender);
- void __fastcall FormKeyDown(TObject *Sender, WORD &Key,
- TShiftState Shift);
- void __fastcall FindStringEditKeyDown(TObject *Sender, WORD &Key,
- TShiftState Shift);
- void __fastcall FindButtonKeyDown(TObject *Sender, WORD &Key,
- TShiftState Shift);
- void __fastcall FindNextButtonKeyDown(TObject *Sender, WORD &Key,
- TShiftState Shift);
- private: // User declarations
- public: // User declarations
- __fastcall TFindForm(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFindForm *FindForm;
- //---------------------------------------------------------------------------
- #endif