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

生物技术

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef URLLabelH
  3. #define URLLabelH
  4. //---------------------------------------------------------------------------
  5. #include <SysUtils.hpp>
  6. #include <Controls.hpp>
  7. #include <Classes.hpp>
  8. #include <Forms.hpp>
  9. #include <StdCtrls.hpp>
  10. #include <NMHTML.hpp>
  11. //---------------------------------------------------------------------------
  12. class PACKAGE TURLLabel : public TLabel
  13. {
  14. private:
  15. protected:
  16. public:
  17.     __fastcall TURLLabel(TComponent* Owner);
  18.     AnsiString URL;
  19.     THTML *HTML;
  20.     HWND Handle;
  21.     void __fastcall Click();
  22. __published:
  23. };
  24. //---------------------------------------------------------------------------
  25. #endif