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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef MMMainFrmH
  3. #define MMMainFrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include "RichView.hpp"
  10. #include "RVScroll.hpp"
  11. #include "RVStyle.hpp"
  12. #include "CRVData.hpp"
  13. #include "RVTable.hpp"
  14. #include <Graphics.hpp>
  15. //---------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published: // IDE-managed Components
  19. TLabel *Label1;
  20. TLabel *Label2;
  21. TListBox *ListBox1;
  22. TRichView *rvOutput;
  23. TRichView *rvTemplate;
  24. TRVStyle *rvsOutput;
  25. TRVStyle *rvsTemplate;
  26. void __fastcall FormCreate(TObject *Sender);
  27. void __fastcall FormDestroy(TObject *Sender);
  28. void __fastcall ListBox1Click(TObject *Sender);
  29. private: // User declarations
  30.     TStringList* Codes;
  31.     void LoadCustomers();
  32.     AnsiString GetFieldValueFromDatabase(const AnsiString FieldName);
  33.     void FillFields(TCustomRVData* RVData);
  34. public: // User declarations
  35. __fastcall TForm1(TComponent* Owner);
  36. };
  37. //---------------------------------------------------------------------------
  38. extern TForm1 *Form1;
  39. //---------------------------------------------------------------------------
  40. #endif