-
Cfunction
C函数大全应该已经全了吧,呵呵,大家自己看吧
对了,里面还有实例,很不错的,希望大家喜欢
(C function Guinness should have been wide of the bar, huh, huh, U.S. Check it out on their own, and there is also examples of very good, I hope everyone likes)
- 2007-09-10 22:09:41下载
- 积分:1
-
VENXQP
智能指针,很好的vc支持代码, 适合vc开发人员,很好的源码()
- 2018-04-26 08:41:18下载
- 积分:1
-
TCPNetKitbox
TCP网络调试程序
本程序可以用来进行TCP通信的调试,程序包含了TCP服务器和客户端两个部分。
TCP服务器可以在指定的端口进行监听,并同时最多处理100个连接。实时显示每个连接发送过来的数据,并且可以手工选择需要对哪个连接回送数据,或者是断开某个连接。
TCP客户端可以对某个IP(或者直接输入域名)的端口进行连接,实时显示已经连接的服务器发送的信息,可以手动输入需要发送到服务器的内容。
这个程序在对一些自己编写的服务器或者客户端的程序进行调试的时候比较有用。
大家在使用中有什么好的意见或者建议,欢迎发送邮件到ghsnc@163.com。
马丹(TCP network debugging procedures of this procedure can be used for TCP communications debugging, includes the TCP server and client in two parts. TCP server can be the designated port eavesdropping, and at the same time deal with a maximum of 100 links. Real-time display over each link this data, as well as the need to manually choose which link to send data, or disconnect a link. TCP client can be on a certain IP (or domain name directly input) port for connection, real-time display is already connected to the server to send messages manually input can be sent to the server needs of the content. In the process of the preparation of some of their server or client procedure debugging time more useful. We use any good ideas or suggestions, please send an email to ghsnc@163.com. Martin)
- 2007-04-14 21:48:20下载
- 积分:1
-
mypgm
Library for Otsu Method in image segmentation
- 2013-03-06 01:22:57下载
- 积分:1
-
CCpuId100
得到CPU信息的程序.不过好像不准.(Program which obtains CPU information, But it seems not so accuracy.)
- 2002-04-19 09:18:04下载
- 积分:1
-
gene
说明: 主要是基因识别的 matlab程序 一种全新的算法(Gene identification is mainly a new algorithm matlab program)
- 2011-04-11 20:42:14下载
- 积分:1
-
kalmanhsjkdskmatlab
kalman 滤波的 matlab 程序 (Kalman filtering procedures Matlab)
- 2007-04-18 13:25:58下载
- 积分:1
-
5DGS-OpenGLgame-9
5DG S OpenGLgame9
5DG S OpenGL版
项目名称:5DG S Win32 Framework
场景控制:
ESC:退出程序
F1:窗口模式或全屏模式的切换(5DG S OpenGLgame9)
- 2016-05-21 10:10:35下载
- 积分:1
-
盲目搜索
人工智能实验用到的盲目搜索代码,复制的老师的代码,有需要的可以看一下,希望能帮到学习代码的同学吧
- 2022-10-04 11:25:03下载
- 积分:1
-
C# 为文字创建渐变色的下划线
C# 为文字创建渐变色的下划线,放大后还是很漂亮的,下划线变成了点状的,而且是颜色是渐变的,下面介绍实现这一功能的代码,给字符串创建渐变色下划线,核心代码如下:
TextDecoration MyUnderline = new TextDecoration();
Pen MyPen = new Pen();
MyPen.Brush = new LinearGradientBrush(Colors.Green,
Colors.Blue, new Point(0, 0.5), new Point(1, 0.5));
MyPen.Brush.Opacity = 0.5;
MyPen.Thickness = 1.5;
MyPen.DashStyle = DashStyles.Dash;
MyUnderline.Pen = MyPen;
MyUnderline.PenThicknessUnit = TextDecorationUnit.FontRecommended;
TextDecorationCollection MyCollection = new TextDecorationCollection();
MyCollection.Add(MyUnderline);
this.textBlock1.Text = "中华人民共和国";//自定义要显示下划线的文字
this.textBlock1.FontSize = 48;
this.textBlock1.TextDecorations = MyCollection;
需要请下载完整源码。运行效果图如下。
- 2022-01-22 05:14:06下载
- 积分:1