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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include <vclDBCtrls.hpp>
  10. #include <vclExtCtrls.hpp>
  11. #include <vclMask.hpp>
  12. #include "DBRV.hpp"
  13. #include "RichView.hpp"
  14. #include "RVScroll.hpp"
  15. #include <vclDBTables.hpp>
  16. #include <vclDB.hpp>
  17. #include "RVStyle.hpp"
  18. #include <Db.hpp>
  19. //---------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published: // IDE-managed Components
  23.     TLabel *Label1;
  24.     TLabel *Label2;
  25.     TLabel *Label3;
  26.     TDBNavigator *DBNavigator1;
  27.     TDBEdit *DBEdit1;
  28.     TDBRichView *DBRichView1;
  29.     TButton *Button1;
  30.     TTable *Table1;
  31.     TDataSource *DataSource1;
  32.     TRVStyle *RVStyle1;
  33.     void __fastcall FormCreate(TObject *Sender);
  34.     void __fastcall DataSource1DataChange(TObject *Sender, TField *Field);
  35.     void __fastcall Button1Click(TObject *Sender);
  36. private: // User declarations
  37.     void UpdateStatusLabel();
  38. public: // User declarations
  39.     __fastcall TForm1(TComponent* Owner);
  40. };
  41. //---------------------------------------------------------------------------
  42. extern TForm1 *Form1;
  43. //---------------------------------------------------------------------------
  44. #endif