12345678910111213141516171819202122232425262728 |
- //---------------------------------------------------------------------------
- #ifndef FrmMainFH
- #define FrmMainFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- //---------------------------------------------------------------------------
- class TFrmMain : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TMemo *moLicense;
- TComboBox *cboType;
- TEdit *txtHostName;
- private: // User declarations
- public: // User declarations
- __fastcall TFrmMain(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmMain *FrmMain;
- //---------------------------------------------------------------------------
- #endif
|