-
zdusb
中断方式的USB开发上位机程序【键盘,鼠标使用些方式】初学者可以学习看看(Interrupt the host computer' s USB development program [keyboard, mouse, beginners can use to learn some ways to see])
- 2011-08-08 17:19:09下载
- 积分:1
-
ben_ke_jiao_wu_xi_tong
纯C++代码,在大部分编译环境下编译通过。支持不同级别用户具有不同修改查看权限。支持鼠标点击,具有炫丽的鼠标悬停效果(Pure C++ code, in most compiler environment compile. Support for different levels of users with different permissions to modify the view. Support mouse clicks, mouse-over effects with dazzling)
- 2013-10-18 10:05:47下载
- 积分:1
-
macroselhctiolxlock
非实时自适应滤波器,可方便地移植到其他平台()
- 2018-07-09 05:28:51下载
- 积分:1
-
短信投票功能 短信猫实例源码下载
短信投票功能 短信猫
- 2013-01-31下载
- 积分:1
-
C#抓取IE浏览器网站整体截图实例源码
C#抓取整个网站为一个图片
- 2013-01-17下载
- 积分:1
-
C#+access学生成绩管理系统完整版
C# access学生成绩管理系统完整版,在上一期的基础上增加了一些功能,例如增加了学生端和管理员端,学生端只能对自己的信息进行修改和查看,管理员可以对全部学生的信息进行增删改查。
- 2019-12-20下载
- 积分:1
-
code
The RAMDISK is made to look like a hard drive. Consequently, the class
is "hdc". The class install section points the section containing
Registry entries for the class. On many machines, this is already
present.
- 2010-06-11 21:36:43下载
- 积分:1
-
C# 查看剪贴板内容 以及粘贴内容到剪贴板实例代码
winform剪贴板常用操作
- 2013-02-11下载
- 积分:1
-
LOF
列举制定的目录中被打开的文件,和打开这些文件的进程的PID,命令:lof 驱动文件 目标文件夹。由于驱动的限制,该程序仅适用Windows 2000/XP。(Listed in the directory has been developed to open the file, and open the files of the process PID, the command: lof driver file destination folder. As the driving restrictions, the program applies only to Windows 2000/XP.)
- 2010-03-13 22:36:30下载
- 积分: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