-
N9 基于C# TCP 的摄像头的图像视频传输
编程语言使用用C#,基于TCP传输协议,完成了图片传输(Using C#, based on TCP transmission protocol, picture transmission)
- 2020-06-24 05:40:02下载
- 积分:1
-
MyVideo
avi视频打开的小程序,可以再次基础上进行大量的开发(avi video to open a small program that can once again a lot of development on the basis of)
- 2012-05-26 16:09:31下载
- 积分:1
-
UsbcameraToIpcamera
使usb摄像头可以当作ip摄像头使用的小程序(Make usb camera ip camera can be used as a ipcamera)
- 2013-12-25 17:08:17下载
- 积分:1
-
DataManage
基于supermap的二次开发,数据管理功能强大,除了地图的基本操作还有文件操作(Data Management is a powerful addition to the basic operation of the map file operations based on the secondary development of supermap)
- 2020-07-03 20:00:01下载
- 积分:1
-
C# pop3 邮件接收程序
private void Connect_Click(object sender, System.EventArgs e) { //将光标置为等待状态 Cursor cr = Cursor.Current; Cursor.Current = Cursors.WaitCursor; String a ,b,c; //用110端口新建POP3服务器连接 Server = new TcpClient(PopServer.Text, 110); Status.Items.Clear(); try { //初始化 NetStrm = Server.GetStream(); RdStrm = new StreamReader(Server.GetStream()); Status.Items.Add(RdStrm.ReadLine()); //登录服务器过程 Data = "USER " Username.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); Data = "PASS " Password.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); //向服务器发送STAT命令,从而取得邮箱的相关信息:邮件数量和大小 Data = "STAT" CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); //Status.Items.Add(RdStrm.ReadLine()); //改变按钮的状态 Connect.Enabled = false; Disconnect.Enabled = true; Retrieve.Enabled = true; //将光标置回原来状态 Cursor.Current = cr; } catch (InvalidOperationException err) { Status.Items.Add("Error: " err.ToString()); } }
- 2014-11-02下载
- 积分:1
-
Calibration
this is reference about calibration using visual c++.
- 2010-12-23 17:26:02下载
- 积分:1
-
Grid
用MFC实现用表格控件对数据进行显示和修正处理(MFC with tabular data display controls and correction process)
- 2013-11-27 13:57:55下载
- 积分:1
-
TMS320F28035_PWM
DSP 的PWM程序,基础,讲解详细明了!!!!!!(DSP 的PWM程序)
- 2020-10-15 14:37:30下载
- 积分:1
-
gkgosvj
蓝牙编解码代码,开源代码,资源非常不好找(Bluetooth codec code, open source code, resources are very difficult to find)
- 2019-01-01 00:03:49下载
- 积分:1
-
testZeroMQ
内含简单项目代码及ZeroMQ使用教程,资源适合初学者,可以满足快速入门要求
下载ZeroMQ
下载网址:http://zeromq.org/intro:get-the-software
点击“Windows sources”下载zeromq-4.0.3.zip文件
编译ZeroMQ库文件
解压zeromq-4.0.3.zip文件,进入buildsmsvc目录,用VS打开*.sln工程文件,编译生成解决方案。编译完成后,会在lib目录下生成dll和lib文件
编写简单的测试工程
1.用VS新建2个项目,一个是server端,一个是client端
2.将ZeroMQ源码项目的include目录下的两个文件“zmq.h”,“zmq_utils.h”拷贝至自己新建的工程
3.将ZeroMQ源码项目的lib目录下的两个文件“libzmq.dll”,“libzmq.lib”拷贝至自己新建的工程
4.将文件“zmq.h”,“zmq_utils.h”和“libzmq.lib”添加进自己新建的项目。(ZeroMQ simple project containing the code and tutorials, resources for beginners, to meet the requirements of the Quick Start Download ZeroMQ Download URL: http://zeromq.org/intro:get-the-software Click " Windows sources" download zeromq-4.0. 3.zip ZeroMQ library files compiled zeromq-4.0.3.zip unzip the file, enter builds msvc directory, with VS open*. sln project file, the compiler generates solutions. After the compilation is complete, it will generate dll and lib files in the lib directory to write a simple test project. Using VS New two projects, one is server-side, is a client-side two would both include directories ZeroMQ source project under File " zmq.h" , " zmq_utils.h" copy to their new project 3 would be two files ZeroMQ source project lib directory under " libzmq.dll" , " libzmq.lib" copy to their new project 4 would file " zmq.h" , " zmq_utils.h" and " libzmq.lib" added to their new projects.)
- 2014-02-19 08:43:26下载
- 积分:1