MMMainFrm.h
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:1k
源码类别:

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef MMMainFrmH
  3. #define MMMainFrmH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include "RichView.hpp"
  10. #include "RVScroll.hpp"
  11. #include "RVStyle.hpp"
  12. #include "CRVFData.hpp"
  13. #include "RVTable.hpp"
  14. #include <Db.hpp>
  15. #include <DBTables.hpp>
  16. //---------------------------------------------------------------------------
  17. class TForm1 : public TForm
  18. {
  19. __published: // IDE-managed Components
  20.     TRichView *RichView1;
  21.     TRichView *RichView2;
  22.     TTable *Table1;
  23.     TRVStyle *RVStyle2;
  24.     void __fastcall FormCreate(TObject *Sender);
  25. private: // User declarations
  26.     void ReplaceFields(TCustomRVFormattedData* RVData);
  27.     void LoadData(const AnsiString Code, TMemoryStream* &Stream);
  28. public: // User declarations
  29.     __fastcall TForm1(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern PACKAGE TForm1 *Form1;
  33. //---------------------------------------------------------------------------
  34. #endif