Location:
Search - PostMessage
Search list
Description: VB进程间通讯演示(1.0) 说明:一共四个演示。分别如下: 1:Sample 一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别。 2:SendText 不用窗口子类化,而达到和发送自定义消息同样的效果。 3:SendFile 由于演示2中还是通过发消息来传递字符串,不可能传递大块文本,本例综合演示1和演示2达到传递大块文本的功能。 4:Chat 演示2和演示3使用的都是SendMessage来发放通知消息,所以不能异步通讯,SetWindowText不能跨进程使用,PostMessage只能在WM_USER以上的自定义消息中才能传递指针,那么如何才能异步通讯呢?我还没有好主意,就用定时器吧!看看这个可以聊天的程序就知道了。 Common目录下有四个模块。其中ShareStr2.cls是原来大师Bruce MicKenney写的东西,就是这个东西害我浪费很多时间来调试。-VB inter-process communication demo (1.0) Note : A total of four demonstration. Respectively, as follows : 1 : Sample a simple use of shared memory mapping example, look at the operation of two examples, 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, not send bulk 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, then how can asynchronous communication? I
Platform: |
Size: 52250 |
Author: gy |
Hits:
Description: 共四个演示。分别如下:
1:Sample
一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别。
2:SendText
不用窗口子类化,而达到和发送自定义消息同样的效果。
3:SendFile
由于演示2中还是通过发消息来传递字符串,不可能传递大块文本,本例综合演示1和演示2达到传递大块文本的功能。
4:Chat
演示2和演示3使用的都是SendMessage来发放通知消息,所以不能异步通讯,SetWindowText不能跨进程使用,PostMessage只能在WM_USER以上的自定义消息中才能传递指针,那么如何才能异步通讯呢?我还没有好主意,就用定时器吧!看看这个可以聊天的程序就知道了。
Common目录下有四个模块。
其中ShareStr2.cls是原来大师Bruce MicKenney写的东西,就是这个东西害我浪费很多时间来调试。原来大师的东西也会有错。-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
Platform: |
Size: 52570 |
Author: cohoo |
Hits:
Description: 窗口杀手 在使用win2000/xp的时候发现,老是出现n个输入法的窗口,不能关掉,又总在最上面,看着很不爽,就写了这个小程序来把他们关掉。 方法很简单,就是FindWindow()在PostMessage(WM_CLOSE,...),没有技术含量,仅仅图实用而已。-window Win2000/xp killer in the use of the time found that there always n input window, we can not switch off, the total at the top, watching very quickly wrote a small procedure to them to switch off. It is very simple, FindWindow () PostMessage (WM_CLOSE etc. no technical content, it only practical plan.
Platform: |
Size: 12288 |
Author: DoItFreely |
Hits:
Description: VB进程间通讯演示(1.0) 说明:一共四个演示。分别如下: 1:Sample 一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别。 2:SendText 不用窗口子类化,而达到和发送自定义消息同样的效果。 3:SendFile 由于演示2中还是通过发消息来传递字符串,不可能传递大块文本,本例综合演示1和演示2达到传递大块文本的功能。 4:Chat 演示2和演示3使用的都是SendMessage来发放通知消息,所以不能异步通讯,SetWindowText不能跨进程使用,PostMessage只能在WM_USER以上的自定义消息中才能传递指针,那么如何才能异步通讯呢?我还没有好主意,就用定时器吧!看看这个可以聊天的程序就知道了。 Common目录下有四个模块。其中ShareStr2.cls是原来大师Bruce MicKenney写的东西,就是这个东西害我浪费很多时间来调试。-VB inter-process communication demo (1.0) Note : A total of four demonstration. Respectively, as follows : 1 : Sample a simple use of shared memory mapping example, look at the operation of two examples, 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, not send bulk 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, then how can asynchronous communication? I
Platform: |
Size: 52224 |
Author: gy |
Hits:
Description: 共四个演示。分别如下:
1:Sample
一个简单的使用了共享内存映射的例子,运行两个实例看看就知道,没有什么特别。
2:SendText
不用窗口子类化,而达到和发送自定义消息同样的效果。
3:SendFile
由于演示2中还是通过发消息来传递字符串,不可能传递大块文本,本例综合演示1和演示2达到传递大块文本的功能。
4:Chat
演示2和演示3使用的都是SendMessage来发放通知消息,所以不能异步通讯,SetWindowText不能跨进程使用,PostMessage只能在WM_USER以上的自定义消息中才能传递指针,那么如何才能异步通讯呢?我还没有好主意,就用定时器吧!看看这个可以聊天的程序就知道了。
Common目录下有四个模块。
其中ShareStr2.cls是原来大师Bruce MicKenney写的东西,就是这个东西害我浪费很多时间来调试。原来大师的东西也会有错。-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
Platform: |
Size: 52224 |
Author: cohoo |
Hits:
Description: 共四个演示。分别如下:
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
Platform: |
Size: 52224 |
Author: 毛东 |
Hits:
Description: void TransparentWnd::OnLButtonDown(UINT nFlags, CPoint point)
{
CWnd::OnLButtonDown(nFlags, point)
//实现无标题拖动
PostMessage(WM_NCLBUTTONDOWN, HTCAPTION, MAKELPARAM(point.x,point.y))
}-void TransparentWnd : : OnLButtonDown (UINT nFlags. CPoint point) (CWnd : : OnLButtonDown (nFlags. point)// Drive heading towards a PostMessage (WM_NCLBUTTOND OWN, HTCAPTION, MAKELPARAM (point.x. point.y
Platform: |
Size: 15360 |
Author: zanjiangfeng |
Hits:
Description: 一个FTP密码记录器,非钩子密码拦截技术!-An FTP password recorder, password interception technology non-hook!
Platform: |
Size: 1240064 |
Author: 杨伊 |
Hits:
Description: 数字键盘的模拟,使用postmessage方法实现,比较简单
Platform: |
Size: 1024 |
Author: yangyi |
Hits:
Description: 二程序间通信源码(PostMessage)-Second inter-process communication source (PostMessage)
Platform: |
Size: 119808 |
Author: |
Hits:
Description: 简单的通信程序,可以分别实现收和发两方的程序。-Simple communication program, you can achieve separately the two sides close and hair procedures.
Platform: |
Size: 63488 |
Author: 蒋毓 |
Hits:
Description: 简单的API函数CreateToolhelp32Snapshot
ShellExecute
PostMessage 用法
VS2005 C-CreateToolhelp32Snapshot
ShellExecute
PostMessage
about some API method in VS2005 C++
Platform: |
Size: 1024 |
Author: 林齐 |
Hits:
Description: How to use postmessage with autoit?
here is a code source (.au3 file) you just need to include it to your script and done!
Platform: |
Size: 1024 |
Author: kabda |
Hits:
Description: delphi自定义消息范例
delphi自定义消息范例
delphi自定义消息范例-delphi custom message custom message delphi sample sample example delphi custom message custom message delphi sample
Platform: |
Size: 499712 |
Author: 骆安安 |
Hits:
Description: 密码发信程序很好用。在书上找的。可以在写木马的时候使用得到。-Password write a good program to use. In the book to find. Trojan can be used when writing to be.
Platform: |
Size: 1258496 |
Author: 爱雪人 |
Hits:
Description: PostMessage,游戏外挂,按键发送-PostMessage, game plug-in, send button
Platform: |
Size: 41984 |
Author: moulunping |
Hits:
Description: 使用PostMessagebox操作计算器-PostMessagebox Click Clac
Platform: |
Size: 2048 |
Author: 贝隆 |
Hits:
Description: 该插件实现了跨窗口的消息传递。现在很多浏览器都支持通过windows.postMessage跨窗口、跨域、跨源的消息传递,该插件就是对 windows.postMessage方法进行简单封装,提供jQuery风格的调用方式。-The plug-in cross-window messaging. Many browsers now support cross-window by windows.postMessage, cross-border, cross-source messaging, the plug-in is a simple package windows.postMessage method, jQuery style call.
Platform: |
Size: 19456 |
Author: kkpudn78b |
Hits:
Description: 在VB.NET中用postmessage向记事本写内容-Use "postmessage" statement to write content to notepad in VB.NET.
Platform: |
Size: 72704 |
Author: 杨芳沛 |
Hits:
Description: 通过调用API函数,完成了PostMessage传递信息的功能-By calling the API function, completed the PostMessage transfer function of information
Platform: |
Size: 2048 |
Author: wang |
Hits: