登录
首页 » C# » C#键盘钩子操作源码 实例下载

C#键盘钩子操作源码 实例下载

于 2013-01-08 发布
0 307
下载积分: 1 下载次数: 0

代码说明:

C#键盘钩子操作源码

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Project5
    针对大型集群存储系统中磁盘SMART信息,对磁盘故障进行预测(failure predict)
    2017-03-29 20:25:36下载
    积分:1
  • 9513787
    xml_io_tools,可以实现xml文件的解析,只需一条语句即可,方便好用(Xml_io_tools, can be used to parse xml files. It only needs a single statement, which is convenient and easy to use.)
    2018-12-30 08:31:51下载
    积分:1
  • 通过C#自带的头文件(类)获取Windows信息
    通过C#通过的类获取系统/硬件信息 
    2020-12-10下载
    积分:1
  • 9744_041
    一直在寻找学习c++的好教材,听朋友介绍本书不错,好东西大家分享。(have been studying c find good material, listening to a friend on the book is true, the good things we share.)
    2007-04-26 09:28:57下载
    积分:1
  • C#自动更新服务(本地服务安装)
    using System;using System.Collections.Generic;using System.Linq;using System.Text;using Common.WinService;using Common.Log;using System.Threading;using Common.Net;using System.Text.RegularExpressions;namespace Collection.AutoRunner{    //获取学生信息    public class Service_Update_Data : IWindowsService    {        private ILogWriter _logWriter = null;        private const string logCategory = "Services.Info";        private string logInfoSource = "Update_Data";        private const string logErrorCategory = "Services.Error";        private const string logErrorSource = "Update_Data_Error";        private bool BeStop = true;        private System.Timers.Timer timer = null;        public void Start(Common.Log.ILogWriter logWriter, string gameCode)        {            gameCode = gameCode.ToUpper();            logInfoSource = gameCode;            _logWriter = logWriter;            BeStop = false;            StartRequestData();        }        int stata = 0;        private void StartRequestData()        {            try            {                #region 配置                //时间频率                var UpdateStudentSpan = ServiceHelper.GetInterval("UpdateData");                //更新学生开始时间                var studentbegintime = ServiceHelper.GetInterval("StudentBeginTime");                //更新学生结束时间                var studentendtime = ServiceHelper.GetInterval("StudentEndTime");                    //是否更新学生基本信息:true为更新 false为不更新                var IsUpdateStudnet =Convert.ToBoolean(ServiceHelper.GetSystemConfig("IsUpdateStudnet"));                                #endregion                timer = ServiceHelper.ExcuteByTimer(UpdateStudentSpan, () =>                {                    int timeHour = DateTime.Now.Hour;                    if (timeHour == 3)                        stata = 0;                    #region 更新学生基本信息                    if (studentbegintime
    2015-03-11下载
    积分:1
  • CMS
    C#企业客户关系管理系统(CRM)...(Enterprise Customer Relationship Management System)
    2009-09-21 15:08:13下载
    积分:1
  • GetHardDiskId
    获取硬盘序列号的动态库与调用源码! 可以获得所有硬盘的序列号,兼容2000/XP/2003操作系统!(Get hard drive serial number of the dynamic library and call the source! Access to all the hard drive serial number, compatible with 2000/XP/2003 operating system!)
    2020-09-05 16:48:05下载
    积分:1
  • RDM 解析,协议代码,适用于artnet 协议
    RDM 解析,协议代码,适用于artnet 协议 【源码目录】 RdmProtocal ├── Debug│   ├── RdmProtocal.exe│   ├── RdmProtocal.exp│   ├── RdmProtocal.lib│   └── RdmProtocal.pdb├── RdmProtocal│   ├── Debug│   │   ├── LzMethod.obj│   │   ├── RdmNode.obj│   │   ├── RdmProtocal.Build.CppClean.log│   │   ├── RdmProtocal.log│   │   ├── RdmProtocal.obj│   │   ├── RdmProtocal.pch│   │   ├── RdmProtocal.res│   │   ├── RdmProtocal.tlog│   │   │   ├── CL.command.1.tlog│   │   │   ├── CL.read.1.tlog│   │   │   ├── CL.write.1.tlog│   │   │   ├── RdmProtocal.lastbuildstate│   │   │   ├── RdmProtocal.write.1u.tlog│   │   │   ├── link.command.1.tlog│   │   │   ├── link.read.1.tlog│   │   │   ├── link.write.1.tlog│   │   │   ├── rc.command.1.tlog│   │   │   ├── rc.read.1.tlog│   │   │   └── rc.write.1.tlog│   │   ├── RdmProtocalDlg.obj│   │   ├── stdafx.obj│   │   ├── vc140.idb│   │   └── vc140.pdb│   ├── LzMethod.cpp│   ├── LzMethod.h│   ├── RdmNode.cpp│   ├── RdmNode.h│   ├── RdmProtocal.aps│   ├── RdmProtocal.cpp│   ├── RdmProtocal.h│   ├── RdmProtocal.rc│   ├── RdmProtocal.vcxproj│   ├── RdmProtocal.vcxproj.filters│   ├── RdmProtocal.vcxproj.user│   ├── RdmProtocalDlg.cpp│   ├── RdmProtocalDlg.h│   ├── ReadMe.txt│   ├── controller_library.h│   ├── lib│   │   ├── FTD2XX.lib│   │   └── RDM.lib│   ├── res│   │   ├── RdmProtocal.ico│   │   └── RdmProtocal.rc2│   ├── resource.h│   ├── stdafx.cpp│   ├── stdafx.h│   └── targetver.h├── RdmProtocal.VC.db├── RdmProtocal.sln└── ipch    └── RDMPROTOCAL-b05a99f1        └── RDMPROTOCAL-61763a13.ipch8 directories, 52 files
    2021-05-06下载
    积分:1
  • mallocpool-0.9.4.tar
    malloc pool 内存池实现原理及源代码(malloc pool )
    2016-11-30 15:04:38下载
    积分:1
  • OnlyOneInst
    VC++ 禁止运行程序的多个实例,程序根据主窗口类名和主窗口名判断是否已经有实例存在,如果存在就将其激活,并显示出来,如果是最小化的就还原窗口;如果有实例存在,则返回False并退出。 (VC++ prohibits running the program multiple instances of the program under the main window class name and the main window name to determine whether there are examples exist, if it will activate and show, if it is minimized to restore the window if examples exist, Returns False and exit.)
    2011-04-21 23:01:44下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载