Unit1.h
Upload User: lhxd_sz
Upload Date: 2014-10-02
Package Size: 38814k
Code Size: 1k
Development Platform:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Dialogs.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TButton *Button1;
  15.         TButton *Button2;
  16.         TEdit *Edit1;
  17.         TButton *Button3;
  18.         TButton *Button4;
  19.         void __fastcall Button1Click(TObject *Sender);
  20.         void __fastcall Button2Click(TObject *Sender);
  21.         void __fastcall Button3Click(TObject *Sender);
  22.         void __fastcall Button4Click(TObject *Sender);
  23. private: // User declarations
  24. public: // User declarations
  25.         __fastcall TForm1(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern PACKAGE TForm1 *Form1;
  29. //---------------------------------------------------------------------------
  30. #endif