-
IBWF
介绍VC基本功能应用,以及如何操作VC界面的基本按钮()
- 2017-09-17 05:20:49下载
- 积分:1
-
REGCTRL
说明: 注册表操作,打开注册表,查询,并进行设置。后面有注释部分是进行系统的一些信息进行设置查询。(Registry operation, open the registry, query, and set up. Notes partly behind some of the information system set up inquiries.)
- 2008-11-07 18:11:18下载
- 积分:1
-
DALI_2013_liujin
DALI的各种例程,软硬件都有,欢迎各位下载使用(DALI routine hardware and software are welcome to download)
- 2013-02-28 15:00:07下载
- 积分:1
-
C# 周立功can卡调用函数
C# 周立功can卡调用函数
- 2013-12-10下载
- 积分:1
-
lzerarchymarshallevel
Simple call API function, based on the examples of visual basic, have certain help for the beginners of API,
- 2017-04-26 22:25:54下载
- 积分:1
-
用于后台管理系统,mvc4+easyUI技术
ASP.NET权限管理系统源代码MVC架构源代码EasyUI框架源代码
- 2015-04-01下载
- 积分:1
-
BMPopenandsave
该程序为BMP图像处理,能够打开和存储任何一幅图像格式为BMP,特别适合初学者,仅供参考!(The program for BMP image processing, to open and store any image format for BMP, especially suitable for beginners, for reference purposes only!)
- 2017-05-14 10:20:10下载
- 积分:1
-
OpenNI开发的人体姿势跟踪 示例源码
使用OpenNI开发的人体姿势跟踪,通过跟踪人的右手动作,转动一个3D立方体。 需要下载安装 http://www.openni.org/wp-content/uploads/2013/07/OpenNI-Windows-x86-2.2.zip
- 2013-10-07下载
- 积分:1
-
C#简单游戏键盘外挂
C#简单游戏键盘外挂
- 2013-10-31下载
- 积分: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