资源简介
VC++利用消息机制在两个EXE程序间通信,在发送端发送消息,终端可以即时监听并接收到消息,然后给出提示。通过本程序可了解一些程序间数据交换的相关技巧。
代码片段和文件信息
// Receiver.cpp : Defines the class behaviors for the application.
// Download by http://www.codefans.net
#include “stdafx.h“
#include “Receiver.h“
#include “ReceiverDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CReceiverApp
BEGIN_MESSAGE_MAP(CReceiverApp CWinApp)
//{{AFX_MSG_MAP(CReceiverApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CReceiverApp construction
CReceiverApp::CReceiverApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CReceiverApp object
CReceiverApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CReceiverApp initialization
BOOL CReceiverApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CReceiverDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3615 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\ReadMe.txt
文件 35624 2002-05-23 01:17 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.aps
文件 1038 2002-05-28 21:33 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.clw
文件 2127 2010-05-18 21:26 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.cpp
文件 4195 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.dsp
文件 541 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.dsw
文件 1346 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.h
文件 5210 2002-05-23 01:17 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Receiver.rc
文件 4521 2010-05-18 21:26 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\ReceiverDlg.cpp
文件 1414 2002-05-23 00:34 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\ReceiverDlg.h
文件 1078 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\res\Receiver.ico
文件 400 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\res\Receiver.rc2
文件 538 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\Resource.h
文件 210 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\StdAfx.cpp
文件 1054 2002-05-23 00:32 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Receiver\StdAfx.h
文件 3579 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\ReadMe.txt
文件 1078 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\res\Sender.ico
文件 398 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\res\Sender.rc2
文件 776 2002-05-23 00:31 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\resource.h
文件 35764 2002-05-23 01:14 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.aps
文件 1169 2002-05-23 02:07 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.clw
文件 2099 2010-05-18 21:27 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.cpp
文件 4159 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.dsp
文件 537 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.dsw
文件 1324 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.h
文件 5358 2002-05-23 01:14 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\Sender.rc
文件 4926 2010-05-18 21:27 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\SenderDlg.cpp
文件 1429 2002-05-23 00:30 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\SenderDlg.h
文件 208 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\StdAfx.cpp
文件 1054 2002-05-23 00:29 softhy.net\VC++通过消息机制实现Exe程序间的数据交换\Sender\StdAfx.h
............此处省略10个文件信息
- 上一篇:c语言实现的对任意长度的字符串加解密
- 下一篇:C:DIY shell
相关资源
- 仓库管理系统 vc++
- vc++ 画图形,选中图形可以移动图形
- VC++6.0版做的五子棋程序源码,含禁手
- VC++五子棋窗体界面程序源码可以VC6
- VC++视频帧提取软件
- 用vc++ mfc 编写的一个网页浏览器
- vc++ 6.0使用dbghelp.dll生成dmp内存转储文
- VC++(MFC)实现FTP功能(源代码)
- VC++操作MSChart表格控件,效果不错。
- 郁金香vc++辅助教程合集
- VC++ MFC 的计算器的详细设计
- vc++ 和 openGL 做的 3D水波模拟 非常炫
- VC++实现算数编码
- RS232串口通信C++
- VIsual C++实现的连连看游戏程序
- 一个漂亮的VC++示波器生成类
- C++中用数组实现的通讯录
- vc++基于MFC实现多媒体播放器源码
- VC++ 实现定时关机或休眠-MFC 对话框应
- CGridListCtrlEx源码vc++
- 简易版的QT5实现RS232通信
- Horiba MFC数字通信协议
- VC++ 串口调试助手源代码
- vc++做的考试系统c/s模式
- VC++ 向指定串口发送和接收数据可十六
- vc++FTP搜索工具()
- 基于VC++的图像修复源代码
- 一个数字水印的VC++源程序,支持图片
- Visual C++串口通信
- 蜘蛛纸牌VC++
评论
共有 条评论