-
ASP编写的网站
ASP编写的网站-prepared by the ASP website
- 2023-05-13 06:45:03下载
- 积分:1
-
用创投实现枚举邻居
用vc实现枚举网上邻居-with vc achieve enumeration neighbors
- 2022-03-21 07:51:34下载
- 积分:1
-
a good station procedures
一个不错的全站程序-a good station procedures
- 2022-02-16 03:57:58下载
- 积分:1
-
socket编程实现文件上传
这是一个socket编程实例。Server端监听指定端口,接受Client端连接请求。Client通过发送connect请求与Server端建立Socket连接,然后向Server发送一个简单文件,Server接受该文件后存储到指定目录。完成上传后Server端主动断开连接。
- 2022-04-21 19:33:37下载
- 积分:1
-
C++利用soap调用webService
C++利用soap toolkit3.0调用webService,内含详尽说明文档,程序示例,一个控制台程序,可直接运行(需要联网),调用的是天气的webService服务器
- 2022-08-24 06:50:30下载
- 积分:1
-
一个用来访问http服务器的东西。功能类似于java.net中的那个。但要强,这个对Post方法的支持更好。...
一个用来访问http服务器的东西。功能类似于java.net中的那个。但要强,这个对Post方法的支持更好。-One used to access the http server things. Function similar to that of java.net. But strong, this method of support for the Post better.
- 2022-12-22 01:20:03下载
- 积分:1
-
高级的论坛聊天喊话程序,可以按照颜色列表自动更换颜色比较好看。此范例与PHPWIND的xnwybbschat插件(被广泛使用)兼容性较好。...
高级的论坛聊天喊话程序,可以按照颜色列表自动更换颜色比较好看。此范例与PHPWIND的xnwybbschat插件(被广泛使用)兼容性较好。-Chat message forum for high-level procedures can be automatically replaced in accordance with the color of a list of good-looking color. PHPWIND this example with the xnwybbschat plug-in (which are widely used) better compatibility.
- 2022-10-31 11:35:03下载
- 积分:1
-
linewatcher拨打您的ISP,保持你的联系和日志
LineWatcher dials your ISP, keeps your connection alive and logs errors. Originally distributed as freeware, this program counts over 10.000 downloads since its first release in 2001. See home page http://www.reseau.org/linewatcher/index.html-LineWatcher dials your ISP, keeps your connection alive and logs
errors. Originally distributed as freeware, this program counts over
10.000 downloads since its first release in 2001. See home page
http://www.reseau.org/linewatcher/index.html
- 2022-08-24 08:17:55下载
- 积分:1
-
找到它在网络上,一个寄存器
网络上找的,一个记数器-find it on the network, a Register
- 2023-03-20 21:05:04下载
- 积分:1
-
QT获取网络时间
基本过程如下:
1. 利用ntp服务器获取网络时间
QUdpSocket udp_sock;
udp_sock.connectToHost("time.windows.com",123);
2. 阻塞等待连接成功
if(udp_sock.waitForConnected(60000))
{
...
}
3. 发送时间请求
udp_sock.write(time_req);
udp_sock.flush();
4. 阻塞等待消息返回
if(udp_sock.waitForReadyRead(120000))
{
...
}
说明:此过程等待时间可能较长,出现连接失败的情况也比较常见。
- 2022-03-21 22:20:09下载
- 积分:1