FrmMainF.h.~3~ 888 B

12345678910111213141516171819202122232425262728
  1. //---------------------------------------------------------------------------
  2. #ifndef FrmMainFH
  3. #define FrmMainFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TFrmMain : public TForm
  11. {
  12. __published: // IDE-managed Components
  13. TLabel *Label1;
  14. TLabel *Label2;
  15. TLabel *Label3;
  16. TLabel *Label4;
  17. TMemo *moLicense;
  18. TComboBox *cboType;
  19. TEdit *txtHostName;
  20. private: // User declarations
  21. public: // User declarations
  22. __fastcall TFrmMain(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TFrmMain *FrmMain;
  26. //---------------------------------------------------------------------------
  27. #endif