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

行业应用

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------
  2. #ifndef configH
  3. #define configH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm6 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.         TListBox *ListBox1;
  14.         TEdit *Edit1;
  15.         TButton *btAdd;
  16.         TButton *btDel;
  17.         TCheckBox *cbBind;
  18.         TCheckBox *cbLink;
  19.         TLabel *Label1;
  20.         TButton *btOk;
  21.         TButton *btCancel;
  22.         void __fastcall btOkClick(TObject *Sender);
  23.         void __fastcall FormCreate(TObject *Sender);
  24.         void __fastcall Edit1Change(TObject *Sender);
  25.         void __fastcall btAddClick(TObject *Sender);
  26.         void __fastcall btDelClick(TObject *Sender);
  27.         void __fastcall btCancelClick(TObject *Sender);
  28. private: // User declarations
  29. public: // User declarations
  30.         __fastcall TForm6(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TForm6 *Form6;
  34. //---------------------------------------------------------------------------
  35. #endif