Unit1.h
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:2k
- //---------------------------------------------------------------------------
- #ifndef Unit1H
- #define Unit1H
- //---------------------------------------------------------------------------
- #include <vclClasses.hpp>
- #include <vclControls.hpp>
- #include <vclStdCtrls.hpp>
- #include <vclForms.hpp>
- #include "RVEdit.hpp"
- #include "RichView.hpp"
- #include "RVScroll.hpp"
- #include "RVStyle.hpp"
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TRichViewEdit *RichViewEdit1;
- TButton *Button1;
- TButton *Button2;
- TEdit *Edit1;
- TEdit *Edit2;
- TButton *Button3;
- TRVStyle *RVStyle1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall Button1Click(TObject *Sender);
- void __fastcall Button2Click(TObject *Sender);
- void __fastcall Button3Click(TObject *Sender);
- void __fastcall Edit1Change(TObject *Sender);
- void __fastcall Edit2Change(TObject *Sender);
- void __fastcall RichViewEdit1Change(TObject *Sender);
- private: // User declarations
- // cached values (storing LastItem no is not necessary, but increases efficiency)
- int LastNameItemNo, LastDateItemNo;
- bool Freeze;
- void InsertField(const AnsiString field, const AnsiString value,
- int & LastItemNo);
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-