-
sonrcxcode
鼠标的控制和优化的几个很好的小程序的源代码,对鼠标好些功能都作了设计,(The mouse control and optimization of several good small program source code, all the better for the mouse function design,)
- 2017-05-30 23:14:07下载
- 积分: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
-
ResViewer
PE文件查看工具及源代码,看雪出品,亲测可用(PE file viewer and source code, to see snow produced, pro-test available)
- 2013-09-16 10:26:32下载
- 积分:1
-
froqrammforward
小区物业管理系统源码,包括系统登陆,数据通信,界面软件编程数据通信等(Residential property management system source code, including the system login, data communication, data communication interface software programming, etc)
- 2017-06-17 15:31:17下载
- 积分:1
-
advanced-logging
事件记录类,可直接包含事件记录类,可支持文件和窗口输出两种事件记录方式(Event log category, including event logging class directly, support documents and windows event log output of two ways)
- 2011-08-14 08:15:48下载
- 积分:1
-
DLL函数查看器V2.0
DLL函数查看器V2.0 可以看看dll里导出地函数(Function reader V2.0 of DLL can see the ground function of the derivation in dll )
- 2020-06-26 07:40:02下载
- 积分:1
-
ManpowerSystem
人事信息管理系统,全GUI编程,并链接数据库管理数据,(Personnel Information Management System, all GUI programming, and database management of data link,)
- 2008-07-02 16:14:54下载
- 积分:1
-
x64dbg插件源码
【实例简介】
x64dbg插件源码
- 2021-08-07 00:30:53下载
- 积分:1
-
8856331
信号功率谱密与平稳随机过程 的matlab仿真程序,不错的(Signal power spectrum density and matlab simulation of stationary random process, good)
- 2017-05-13 05:52:03下载
- 积分: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