-
多线程异步编程实例 Thread Async
多线程、异步
- 2012-12-27下载
- 积分:1
-
VC_ini_1
一个的读写INI文件的类及实例(INI file reading and writing a class and examples of)
- 2004-06-02 15:59:09下载
- 积分:1
-
DumpEC
使用WinIO访问笔记本EC的所有寄存器和存储空间。本程序适用ENE EC KB3926(EC laptop using WinIO access to all registers and storage space. This procedure applies to ENE EC KB3926)
- 2021-01-14 20:58:47下载
- 积分:1
-
idoq
说明: 名称:制作托盘程序 编译环境:vc++,net2003(Name: make pallet program compile environment: vc, net2003)
- 2018-12-30 23:30:19下载
- 积分:1
-
c# 定时开机源码下载
远程服务器通过局域网来控制开机,要主板支持Lan开机进入CMOS参数设置。选择电源管理设置“Power Management Setup”菜单。将局域网启动置为enable即可;观察发现不同的CMOS的局域网启动名称不同。注意一下关键字即可 LAN XXXXXX Power UP 有这些关键字就可能是。
- 2014-01-26下载
- 积分:1
-
Pick.Business
可以实现对数据层的操作,对数据业务逻辑进行处理(The operation of the data layer, business logic on the data processing)
- 2012-06-04 20:28:34下载
- 积分:1
-
easyshell
不错的后门代码,用了一些驱动技术来隐藏进程,隐藏注册表,希望对大家有所帮助(good backdoor code, used some technology-driven process to conceal, hide the registry, and I hope to help everyone)
- 2007-04-16 03:55:07下载
- 积分:1
-
ICON
ICON图标提取工具,可以提取exe以及dll文件程序的所有icon图标。(ICON icon extraction tool to extract the program exe and dll files for all icon icon.)
- 2011-05-11 11:25:44下载
- 积分:1
-
search_file
说明: 实现目录中文件查找,遍历,基本实现dir功能(Document the achievement of the directory search, traversal, the basic function of the realization of dir)
- 2009-08-17 21:48:22下载
- 积分: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