-
Delphi7经典问题解析源代码Delphi7经典问解析源代码
Delphi7经典问题解析源代码Delphi7经典问解析源代码-Delphi7 classical analytical source code Delphi7 asked classic analytic source code
- 2022-02-05 22:19:01下载
- 积分:1
-
C++ 实现虚拟摄像头
虚拟摄像头
- 2022-02-05 23:30:41下载
- 积分:1
-
工艺属性信息显示
在 c 语言中使用系统调用操作系统中进程属性信息显示执行
- 2022-03-25 15:36:54下载
- 积分:1
-
9x9
c#编写的 9*9的乘法口诀表 三角形排列(C# u7F16 u5199 u7684 9* 9 u7684 u4E58 u6CD5 u53E3 u8BC0 u8868)
- 2017-05-20 10:23:52下载
- 积分:1
-
支付宝免签收款源码
支付宝免签收款源码,不用购买接口,免费试用
- 2022-01-24 10:18:05下载
- 积分:1
-
该程序关于WEb Service 的编成例子 用C# 编写 简单易懂 该例子侧重客户端的编写 在Visual Studio .Net2003下编译通过...
该程序关于WEb Service 的编成例子 用C# 编写 简单易懂 该例子侧重客户端的编写 在Visual Studio .Net2003下编译通过 -the WEb Service procedures on the formation of examples in C# prepared easily understood examples of the focus on the preparation of the client in Visual Studio. Under compile Net2003
- 2022-07-10 00:28:25下载
- 积分:1
-
UDP打洞程序
用于打通内网与外网通信的功能,建立p2p通信。很多内网客户端没有公网IP,有很多防火墙和网络隔离,此程序通过UDP打洞,可让公网与内网,或者两个内网用户之间建立一个直接连接。类似于各种P2P通信。
- 2023-07-15 15:55:09下载
- 积分:1
-
完成端口
不错的源码,能连接上万个客户端。很成熟。
- 2023-08-29 19:30:03下载
- 积分:1
-
STM32 实现键盘+鼠标复合设备
使用STM32F103RBT6 实现键盘 和鼠标的枚举
操作说明:
接口定义为原子STM32中按键接口PC.5/PA.15/PA.0;
wk_up键输入 字母r;
KEY1键 鼠标上移;
KEY2键 鼠标下移;
- 2023-02-06 03:50:04下载
- 积分:1
-
VC++ 依据特定字符拆分字符串
int CFileFun::SplitCString(CString strIn, CStringArray& strAryRe, LPCTSTR lpstr){ASSERT(lpstr);strAryRe.RemoveAll();int len1 = strIn.GetLength();int len2 = _tcslen(lpstr);if (0 == len1 || 0 == len2){return 0;}int pos1 = 0, pos2 = 0;while ((pos2 = strIn.Find(lpstr, pos1)) != -1){strAryRe.Add(strIn.Mid(pos1, pos2 - pos1));pos1 = pos2 + len2;}//加上最一个...if (len1 > pos1 + 1){strAryRe.Add(strIn.Mid(pos1));}return strAryRe.GetSize();}
- 2022-05-23 06:16:19下载
- 积分:1