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

生物技术

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef URLMemoH
  3. #define URLMemoH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TURLMemoForm : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.         TMemo *URLMemo;
  14.         void __fastcall FormShow(TObject *Sender);
  15.         void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  16. private: // User declarations
  17. public: // User declarations
  18.         __fastcall TURLMemoForm(TComponent* Owner);
  19. };
  20. //---------------------------------------------------------------------------
  21. extern PACKAGE TURLMemoForm *URLMemoForm;
  22. //---------------------------------------------------------------------------
  23. #endif