ModiSF.h
上传用户:deyixm
上传日期:2007-01-06
资源大小:43k
文件大小:1k
源码类别:

行业应用

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------
  2. #ifndef ModiSFH
  3. #define ModiSFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm2 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.         TLabel *Label1;
  14.         TLabel *Label2;
  15.         TLabel *Label3;
  16.         TEdit *Edit1;
  17.         TEdit *Edit2;
  18.         TEdit *Edit3;
  19.         TButton *btCancel;
  20.         TButton *btOK;
  21.         void __fastcall FormShow(TObject *Sender);
  22.         void __fastcall btCancelClick(TObject *Sender);
  23.         void __fastcall btOKClick(TObject *Sender);
  24.         void __fastcall Edit2Change(TObject *Sender);
  25. private: // User declarations
  26. public: // User declarations
  27.         __fastcall TForm2(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern PACKAGE TForm2 *Form2;
  31. //---------------------------------------------------------------------------
  32. #endif