Find.h
上传用户:szb0815
上传日期:2007-06-13
资源大小:338k
文件大小:1k
源码类别:

生物技术

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef FindH
  3. #define FindH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TFindForm : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.     TEdit *FindStringEdit;
  14.     TButton *FindButton;
  15.     TButton *FindNextButton;
  16.     void __fastcall FindButtonClick(TObject *Sender);
  17.     void __fastcall FindNextButtonClick(TObject *Sender);
  18.         void __fastcall FormKeyDown(TObject *Sender, WORD &Key,
  19.           TShiftState Shift);
  20.         void __fastcall FindStringEditKeyDown(TObject *Sender, WORD &Key,
  21.           TShiftState Shift);
  22.         void __fastcall FindButtonKeyDown(TObject *Sender, WORD &Key,
  23.           TShiftState Shift);
  24.         void __fastcall FindNextButtonKeyDown(TObject *Sender, WORD &Key,
  25.           TShiftState Shift);
  26. private: // User declarations
  27. public: // User declarations
  28.     __fastcall TFindForm(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern PACKAGE TFindForm *FindForm;
  32. //---------------------------------------------------------------------------
  33. #endif