-
生产型工厂备件管理系统源码下载
生产型工厂备件管理系统
- 2017-02-08下载
- 积分:1
-
DALI_2013_liujin
DALI的各种例程,软硬件都有,欢迎各位下载使用(DALI routine hardware and software are welcome to download)
- 2013-02-28 15:00:07下载
- 积分:1
-
VCPPGetHardwareId
VC++获取网卡MAC、硬盘序列号、CPU ID、BIOS编号,是个文档,用来学习,需要的话代码移植下也比较简单(VC++ Gets NIC MAC, hard drive serial number, CPU ID, BIOS serial number, is a document used to study under the required code migration is relatively simple)
- 2015-07-24 10:49:26下载
- 积分: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
-
regedithelt
WINDOWS操作系统注册表操作应用(WINDOWS operating system registry to operate the application)
- 2008-03-27 15:52:07下载
- 积分:1
-
x64dbg插件源码
【实例简介】
x64dbg插件源码
- 2021-08-07 00:30:53下载
- 积分:1
-
Windows_Loader_v2.2.2_By_AsaadSoft
说明: pour rendre le windows saven original en un seul click pour toute les versions
- 2019-02-04 06:10:00下载
- 积分: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
-
file-operations
VB 下, 进行文件操作 ,二进制操作。生成Txt,然后读取显示。(VB, file operations, binary operations. Generate Txt, then read the display.)
- 2012-09-06 09:15:40下载
- 积分:1
-
c# 多线程操作例子源码
多线程操作 [实例截图] [核心代码]using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;namespace ThreadMore{ public partial class Form3 : Form { public Form3() { InitializeComponent(); } // 发送数据包的类 public class SendPackage { Package pack; // 保存将被发送的数据包 int quantity = 1; // 数据包的个数 // 发送数据包 public SendPackage(Package p, int count) { pack = p; quantity = count; } public void ThreadRun() { // 发送指定数量的数据包 for (int looper = 1; looper
- 2015-03-20下载
- 积分:1