-
程序说明: 程序采用网上介绍的方法实现最基本的P2P方式通讯.模拟实现即时消息互发. 本程序只是实现简单的P2P互发消息.完成的比较粗糙,更多功能欢迎朋友们更新...
程序说明: 程序采用网上介绍的方法实现最基本的P2P方式通讯.模拟实现即时消息互发. 本程序只是实现简单的P2P互发消息.完成的比较粗糙,更多功能欢迎朋友们更新完善-procedure : online procedures introduced by the most basic method of peer-to-peer communication. Simulation made instant messaging each other. This procedure is a simple peer-to-peer updates. Completion of the rougher, more functional friends welcome update perfect
- 2023-09-04 11:15:03下载
- 积分:1
-
一个类似linux的whois询问的windows中的例子
一个类似linux的whois询问的windows中的例子-Linux s whois a similar question in the example of windows
- 2022-08-12 12:20:02下载
- 积分:1
-
主要讲述了在Win32平台下的Winsock编程,对于众多的基层网络协议,Winsock是访问他们的首选接口。...
主要讲述了在Win32平台下的Winsock编程,对于众多的基层网络协议,Winsock是访问他们的首选接口。-Focuses on the Win32 platforms under the Winsock programming, for a large number of grass-roots network protocol, Winsock is the access to their preferred interface.
- 2022-03-02 07:38:26下载
- 积分:1
-
ip on the network and get access to the area code, Ha Ha Ha
网络方面关于ip的得到与获取方面的代码,哈哈哈 -ip on the network and get access to the area code, Ha Ha Ha
- 2022-02-13 10:04:17下载
- 积分:1
-
一个很有用的Socknet的基类,可以实现很多的就继承
一个很有用的Socknet的基类,可以实现很多的就继承-Socknet a useful base class, you can realize many of succession
- 2022-01-22 07:48:26下载
- 积分:1
-
局域网网络通信编程实例 获取局域网内其他计算机的信息
局域网网络通信编程实例 获取局域网内其他计算机的信息-LAN network communications programming examples LAN access to other computer information
- 2022-06-20 15:25:05下载
- 积分:1
-
sourceinsight4084-setup
代码查看工具,
SourceInsight4.00.0084,2018年的版本。(SourceInsight V4.00.0084(2018) with licence and Crack files.)
- 2020-06-25 11:00:01下载
- 积分:1
-
GB28181-2011T
GB28181-2011T 安全防范视频监控联网系统信息传输、交换、控制技术要求(GB SAFE VIDEO)
- 2013-08-24 13:34:24下载
- 积分:1
-
用vc++演示电子邮件收发的实例程序源代码
用vc++演示电子邮件收发的实例程序源代码-Using vc++ demo to send and receive e-mail source code examples
- 2023-01-06 09:20:03下载
- 积分: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