Unit1.h
上传用户:icamtech04
上传日期:2007-03-13
资源大小:278k
文件大小:1k
源码类别:

ICQ弱点检测代码

开发平台:

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 "EditValue.hpp"
  10. #include <ExtCtrls.hpp>
  11. #include <Buttons.hpp>
  12. #include <ComCtrls.hpp>
  13. #include <Menus.hpp>
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.   TGroupBox *GroupBox2;
  19.   TButton *Button1;     //发生按钮
  20.   TButton *Button2;     //退出按钮
  21.   TGroupBox *GroupBox3;
  22.   TEditValue *Edit2;
  23.   TComboBox *ComboBox1;
  24.   TTimer *Timer1;
  25.   TButton *Button3;     //重新找窗口按钮
  26.   TRichEdit *RichEdit1;
  27.   TLabel *Label1;
  28.   void __fastcall Button2Click(TObject *Sender);
  29.   void __fastcall FormCreate(TObject *Sender);
  30.   void __fastcall Timer1Timer(TObject *Sender);
  31.   void __fastcall Button1Click(TObject *Sender);
  32.   void __fastcall Button3Click(TObject *Sender);
  33.   void __fastcall Edit2KeyPress(TObject *Sender, char &Key);
  34.   void __fastcall ComboBox1KeyPress(TObject *Sender, char &Key);
  35. private: // User declarations
  36. public: // User declarations
  37.   __fastcall TForm1(TComponent* Owner);
  38. };
  39. //---------------------------------------------------------------------------
  40. extern PACKAGE TForm1 *Form1;
  41. //---------------------------------------------------------------------------
  42. #endif