Unit1.h
上传用户:gyjjlc
上传日期:2013-03-29
资源大小:2124k
文件大小:1k
源码类别:

多显示器编程

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "PBFolderDialog.hpp"
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.     TMemo *Memo1;
  15.     TButton *Button1;
  16.     TEdit *Edit1;
  17.     TMemo *Memo2;
  18.     TLabel *Label1;
  19.     TLabel *Label2;
  20.     TLabel *Label3;
  21.     TButton *Button2;
  22.     TButton *Button3;
  23.     TPBFolderDialog *PBFolderDialog1;
  24.     TButton *Button4;
  25.     TLabel *Label4;
  26.     void __fastcall Button1Click(TObject *Sender);
  27.     void __fastcall Button2Click(TObject *Sender);
  28.     void __fastcall Button3Click(TObject *Sender);
  29.     void __fastcall Button4Click(TObject *Sender);
  30. private:
  31.     bool RemoveFromFiles;
  32.     bool __fastcall FindFile(AnsiString FileName,AnsiString SeekText);
  33.     bool __fastcall LocateFile(AnsiString FileName,AnsiString SeekText);
  34. public: // User declarations
  35.     __fastcall TForm1(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern PACKAGE TForm1 *Form1;
  39. //---------------------------------------------------------------------------
  40. #endif