文件名称:2006021801
- 所属分类:
- 进程与线程
- 资源属性:
- [Windows] [Visual C] [Basic/ASP] [源码]
- 上传时间:
- 2008-10-13
- 文件大小:
- 51.34kb
- 下载次数:
- 0次
- 提 供 者:
- 毛*
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
共四个演示。分别如下:
1:Sample
一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别。
2:SendText
不用窗口子类化,而达到和发送自定义消息同样的效果。
3:SendFile
由于演示2中还是通过发消息来传递字符串,不可能传递大块文本,本例综合演示1和演示2达到传递大块文本的功能。
4:Chat
演示2和演示3使用的都是SendMessage来发放通知消息,所以不能异步通讯,SetWindowText不能跨进程使用,PostMessage只能在WM_USER以上的自定义消息中才能传递指针,那么如何才能异步通讯呢?我还没有好主意,就用定时器吧!看看这个可以聊天的程序就知道了。-a total of four demonstration. Respectively, as follows : 1 : Sample a simple use of shared memory mapping example, look at two examples run, we know that nothing special. 2 : SendText not window-type, and to achieve this definition of news from the same effect. 3 : As demonstrated SendFile 2 updates, or to pass through the string, impossible to send large text, the cases demonstrate a comprehensive and demonstration to send two large text functions. 4 : Chat demonstration two and three demonstration SendMessage are used to notify the news release, it is not asynchronous communications, inter-process SetWindowText not use, PostMessage WM_USER only in the above-defined messages can transfer target, How can we asynchronous communication? I have not a good idea, on the timer! Chat can look at
1:Sample
一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别。
2:SendText
不用窗口子类化,而达到和发送自定义消息同样的效果。
3:SendFile
由于演示2中还是通过发消息来传递字符串,不可能传递大块文本,本例综合演示1和演示2达到传递大块文本的功能。
4:Chat
演示2和演示3使用的都是SendMessage来发放通知消息,所以不能异步通讯,SetWindowText不能跨进程使用,PostMessage只能在WM_USER以上的自定义消息中才能传递指针,那么如何才能异步通讯呢?我还没有好主意,就用定时器吧!看看这个可以聊天的程序就知道了。-a total of four demonstration. Respectively, as follows : 1 : Sample a simple use of shared memory mapping example, look at two examples run, we know that nothing special. 2 : SendText not window-type, and to achieve this definition of news from the same effect. 3 : As demonstrated SendFile 2 updates, or to pass through the string, impossible to send large text, the cases demonstrate a comprehensive and demonstration to send two large text functions. 4 : Chat demonstration two and three demonstration SendMessage are used to notify the news release, it is not asynchronous communications, inter-process SetWindowText not use, PostMessage WM_USER only in the above-defined messages can transfer target, How can we asynchronous communication? I have not a good idea, on the timer! Chat can look at
(系统自动生成,下载前可以参看下载内容)
下载文件列表
压缩包 : 476514722006021801.zip 列表 Chat/ Chat.exe Chat/Chat.vbp Chat/Chat.vbw Chat/FileMapping.vbw Chat/frmFileMapping.frm Chat/frmFileMapping.frx Chat/MSSCCPRJ.SCC Chat/ShareStr2.cls Common/ Common/Debug.bas Common/modCommon.bas Common/ShareStr.cls Common/ShareStr2.cls MSSCCPRJ.SCC ReadFirst.txt readme.txt Sample/ Sample.exe Sample/Form1.frm Sample/MSSCCPRJ.SCC Sample/Sample.vbp Sample/Sample.vbw SendFile/ SendFile.exe SendFile/frmSendFile.frm SendFile/frmSendFile.log SendFile/MSSCCPRJ.SCC SendFile/SendFile.vbp SendFile/SendFile.vbw SendText.exe SetText/ SetText/frmSendText.frm SetText/MSSCCPRJ.SCC SetText/SendText.vbp SetText/SendText.vbw