//--------------------------------------------------------------------------- #ifndef FrmMainFH #define FrmMainFH //--------------------------------------------------------------------------- #include #include #include #include #include "cxContainer.hpp" #include "cxControls.hpp" #include "cxEdit.hpp" #include "cxGraphics.hpp" #include "cxLookAndFeelPainters.hpp" #include "cxLookAndFeels.hpp" #include "cxMaskEdit.hpp" #include "cxSpinEdit.hpp" #include "cxTextEdit.hpp" #include "dxSkinBlack.hpp" #include "dxSkinMcSkin.hpp" #include "dxSkinsCore.hpp" #include "cxButtons.hpp" #include #include "cxDropDownEdit.hpp" //--------------------------------------------------------------------------- class TFrmMain : public TForm { __published: // IDE-managed Components TLabel *Label1; TLabel *Label2; TLabel *Label3; TLabel *Label4; TMemo *moLicenseXml; TLabel *lblIssueDays; TcxSpinEdit *seDemoDuration; TcxSpinEdit *seLicenseCnt; TcxTextEdit *txtHostName; TcxButton *btnLicenseGenerateXml; TcxComboBox *cboProductType; TcxComboBox *cboLicenseType; TcxButton *btnHostName; void __fastcall cboLicenseTypePropertiesChange(TObject *Sender); void __fastcall btnHostNameClick(TObject *Sender); void __fastcall btnLicenseGenerateXmlClick(TObject *Sender); private: // User declarations public: // User declarations __fastcall TFrmMain(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TFrmMain *FrmMain; //--------------------------------------------------------------------------- #endif