-
neihebaohu
内核态下基于动态感染技术的应用程序执行保护分析(带源程序哈)
(Dynamic infection technology-based applications in kernel mode execution protection analysis (with source code))
- 2012-10-23 12:23:49下载
- 积分:1
-
c# 嵌入式开发 幼儿园打卡系统源码下载
用到了 sqlite数据库,幼儿园打卡系统
- 2013-12-29下载
- 积分:1
-
C#邮件群发器源码
C#邮件群发器源码
- 2013-10-31下载
- 积分:1
-
C#版本的取色器
C#开发的取色器
- 2013-01-15下载
- 积分:1
-
Windows-dll(Lib)
VC平台下使用VC++语言编程调用Lib库文件以及Dll文件的调用,代码比较简单,另有文字备注说明(VC LIB DLL)
- 2011-12-29 16:28:39下载
- 积分:1
-
WindowsAPI消息大全
目前网上的WindowsMessage基本上都是WM_开头的,本文档汇集了所有类型的Windows消息及其对应的16进制字面量,包括ComboBox、ListView等等控件,并附带简短说明(All Windows Messages and consts)
- 2020-06-22 13:00:02下载
- 积分:1
-
743105
该文件使用VS 创建了一个实例来使用 Google Breakpad在程序崩溃时来生成dmp文件()
- 2018-04-11 08:46:53下载
- 积分:1
-
C#键盘钩子操作源码 实例下载
C#键盘钩子操作源码
- 2013-01-08下载
- 积分:1
-
HBase
辅助开发库HBase,很好用的个人代码总结库,开发人员经常会有很多经典的开发代码,下次使用仍然很频繁,HBase就做了很好的总结,方便了开发使用(Supporting the development of library HBase, well summed up by the personal code library, developers will often develop a lot of classical code, the next use is still very frequent, HBase on to do a very good summary of the development to facilitate the use of)
- 2009-03-30 16:15:11下载
- 积分: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