-
MachRemote
MACH3软件二次开发的一个实例程序,希望对喜欢MACH3二次开发的朋友有帮助。(MACH3 software secondary development of an example program, we want to enjoy MACH3 secondary development to help a friend.)
- 2021-01-15 15:28:46下载
- 积分:1
-
windows下切换IP地址的源码
windows下切换IP地址的源码-windows switching IP addresses under the FOSS
- 2022-08-24 22:29:58下载
- 积分:1
-
仿制IE在“解决方案资源管理器” 中,右键单击“TextBoxExt”项目,从弹出的菜单中选择“属性”,会弹出属性配置对话框,在左上角的“配置(C)”中选择“所...
仿制IE在“解决方案资源管理器” 中,右键单击“TextBoxExt”项目,从弹出的菜单中选择“属性”,会弹出属性配置对话框,在左上角的“配置(C)”中选择“所有配置”,设置输出路径为“.."output”,注意,该输入有点特殊,两个小数点+反斜杠+output,意思是当前文件夹上一层的ouput文件夹(从VC过来的朋友可能比较熟悉这种方式)-IE private void lstBox_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
{
ListBox box=(ListBox)sender
Point pt = new Point(e.X,e.Y)
int n=box.IndexFromPoint(pt)
if(n>=0)
box.SelectedIndex=n
}
- 2022-01-25 19:43:26下载
- 积分:1
-
.Net实现的局域网完整IM,含完整的设计远隔,架构图,如有不明白的可随时联系我,共同探讨:)...
.Net实现的局域网完整IM,含完整的设计远隔,架构图,如有不明白的可随时联系我,共同探讨:)-IM By .Net
- 2022-03-24 15:24:51下载
- 积分:1
-
W5500server-query
W5500-服务端模式例程(查询模式)......(W5500 routines- server mode (query mode))
- 2014-11-13 18:16:26下载
- 积分:1
-
DES加密通信
运用socket编写服务器端与客户端,实现两者通信。程序是用c++编写,代码无冗余,简单易懂,适于初学者参考借鉴。
运行时,先将server端运行,再运行client端,然后server端与client端即可相互信息通信。通信信息使用DES加密,保证了信息的安全性。
- 2022-03-07 10:00:28下载
- 积分:1
-
Optimal scheduling
说明: 基于电动汽车充电负荷预测的电动汽车充电站布局规划(Layout planning of ev charging stations based on ev charging load prediction)
- 2021-05-10 10:59:33下载
- 积分:1
-
《Python+Cookbook》第三版中文v2.0.0
用于学习python与cookbook的一本书,适用于python小伙伴(A book for learning Python and cookbook, for Python buddies)
- 2020-06-20 12:20:02下载
- 积分:1
-
Computer-Networks-and-Internets
这是一个用c++编写的,socket API 的服务器端和客户端的相互响应的简单程序.用cmd打开程序exe,输入“webserver + 端口号”,webclient方面,输入“webclient + 127.0.0.1 + 端口号5600”,则可以在客户端上显示接收到的信息。(This is a c++ written in response to a simple procedure of mutual socket API server and client' s Open Program exe, enter " webserver+ port number" , webclient, the input " webclient+ 127.0.0.1+ port number 5600 with cmd " you can display the information received on the client.)
- 2013-12-27 21:41:43下载
- 积分:1
-
YCArray
说明: /**
* 动态数组的模板类
* 1.支持字符索引
* 2.方便的添加删除修改任意一项
* 最后更新 2004-8-9 yzh
**1.优化了字符索引的运作方式,使用数组存储
**2.重写了底层数据的存储,将连续性的存储方式改为了非连续,
*** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速
* 用法如:
* YCArray<int,int> test
* test.Add("Number2",4)
* test.Add("Number1",2)
* printf("%d %d",test["Number1"],test["Number2"])
* 显示:
* 2 4
*******
*******
History:
2004-11-19
修改了析构函数,解决了索引没有释放的bug
**/(/*** dynamic array template class* 1. Support characters Index* 2. Add convenience to delete arbitrary* a final update 2004-8-9 yzh** 1. Character Index optimized mode of operation, the use of storage arrays** 2 . a rewrite of the underlying data storage, storage continuity conversion of non-continuous, and thus good*** effective support to the "quote", and let the data changed to delete the more rapid* usage such as :* YCArraylt; int, intgt; test* test. Add ( "Number2", 4)* test.Add ( "Number1", 2)* printf ( "% d% d", test [ "Number1"] test [ "Number2"])* Display :** 2 4************* History : 2004-11-19 revised the destructors, the index did not address the release of bug** /)
- 2005-09-06 13:03:51下载
- 积分:1