-
数据库导入和筛选工具
数据库导入和筛选工具
- 2017-03-17下载
- 积分:1
-
Win32Application
VC++获取到Windows开机运行的时间,不是开机时间,而是从开机后到现在的运行时间,也就是一次开机所运行的时间,如果关机了,可能就不准确了。(The VC++ get to the Windows boot running time is not boot time, but from the boot to the running time, which is the time you turn on the running time, shutdown, and may not be accurate.)
- 2013-04-24 17:46:46下载
- 积分:1
-
JieMiJi
产生程序序列号JieMiJi,很不错的vc源码,希望能对大家有所帮助(Generation process serial number JieMiJi, very good vc source, I hope you can help)
- 2011-09-07 22:45:04下载
- 积分:1
-
xdrj
易语言写的杀毒软件...............(Easy language to write anti-virus software ...............)
- 2009-12-13 12:00:05下载
- 积分:1
-
短信投票功能 短信猫实例源码下载
短信投票功能 短信猫
- 2013-01-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
-
ShareMemory
c++ 写的共享内存的实例,进程间通信用,已封装类,方便使用,默认大小根据实际情况自由更改(C++ write the sharing memory examples, inter-process communication, already encapsulation class, ease of use, the default size according to the actual situation of the freedom to change
)
- 2012-08-06 13:14:44下载
- 积分:1
-
MSIIVP
简单的聊天系统,本程序是使用vc进行编程的,可以学习的()
- 2018-04-10 14:59:50下载
- 积分:1
-
6240720
scport for monting your pc s port usage!(Scport for monting your PC s port usage!)
- 2017-06-02 05:03:16下载
- 积分: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