-
RJCQDWI
说明: 6 ways to start other programs
- 2018-12-25 10:27:51下载
- 积分:1
-
一个读取硬盘序列号与CPU序列号的DLL
VC写的,一个读取硬盘序列号与CPU序列号的DLL,大家可以利用它来为自己的软件提供保护机制。(VC written by a reader drives and CPU serial number sequence, the DLL, you can use it for its own software to provide protection mechanisms.)
- 2005-05-02 16:36:26下载
- 积分:1
-
SnR_demo
RapidFinder 实现文件的查找和替换(Realize RapidFinder file search and replace)
- 2008-08-23 00:32:47下载
- 积分:1
-
HIDUSB
Windows 系统下
1.USB设备的查找:
2.发送数据到USB设备:
3.接收数据从USB设备:(Windows system 1. USB device search: 2. Send data to USB device: 3. Receive data from USB devices:)
- 2008-05-27 13:26:13下载
- 积分:1
-
LCD
优龙YLP270的LCD裸机测试程序,欢迎下载(Liuzhou excellent YLP270 the LCD bare-metal test procedures are welcome to download)
- 2008-01-18 11:29:50下载
- 积分:1
-
DLL
creating standard dll in VB
- 2020-07-10 21:28:54下载
- 积分:1
-
jmplementation
DelphiXprogrammingcontrolsDelphiX编程控件()
- 2017-09-23 22:26:41下载
- 积分: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
-
windows32
此是外国书籍的源代码,中文名叫:WINDOWS32位编程,好似吧.
此书很经典的,作为学习windows32位编程的朋友而言,当然,源码可能是你们所要的.(this foreign books of source code, the Chinese name : WINDOWS32-programming, like it. The book is classic, as a learning-programming windows32 friends, of course, FOSS may be what you need.)
- 2006-12-26 12:35:45下载
- 积分: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