1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //---------------------------------------------------------------------------
- #ifndef FrmMainFH
- #define FrmMainFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #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 <Menus.hpp>
- #include "cxDropDownEdit.hpp"
- //---------------------------------------------------------------------------
- class TFrmMain : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TMemo *moLicenseXml;
- TLabel *lblIssueDays;
- TcxSpinEdit *spnIssueDays;
- TcxSpinEdit *spnLicenseCnt;
- TcxTextEdit *txtHostName;
- TcxButton *BtnInsert;
- TcxComboBox *cboProductType;
- TcxComboBox *cboLicenseType;
- TcxButton *cxButton1;
- void __fastcall cboLicenseTypePropertiesChange(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TFrmMain(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmMain *FrmMain;
- //---------------------------------------------------------------------------
- #endif
|