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

行业应用

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------
  2. #ifndef SFAddH
  3. #define SFAddH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Dialogs.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm4 : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TLabel *Label1;
  15.         TEdit *edFileName;
  16.         TButton *btBrowse;
  17.         TLabel *Label2;
  18.         TEdit *edSoftName;
  19.         TLabel *Label3;
  20.         TEdit *edDescription;
  21.         TButton *btOK;
  22.         TOpenDialog *OpenDialog1;
  23.         void __fastcall btBrowseClick(TObject *Sender);
  24.         void __fastcall edFileNameChange(TObject *Sender);
  25.         void __fastcall btOKClick(TObject *Sender);
  26. private: // User declarations
  27. public: // User declarations
  28.         __fastcall TForm4(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern PACKAGE TForm4 *Form4;
  32. //---------------------------------------------------------------------------
  33. #endif