资源简介
用VC++实现的DDE server端代码,client端代码其实也包括在其中了,debug目录中有编译的程序;亲自编写调试的。没有任何问题,可以与组态王或其他软件进行DDE通信
代码片段和文件信息
// DDEserver.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DDEserver.h“
#include “DDEserverDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDDEserverApp
BEGIN_MESSAGE_MAP(CDDEserverApp CWinApp)
//{{AFX_MSG_MAP(CDDEserverApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDDEserverApp construction
CDDEserverApp::CDDEserverApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDDEserverApp object
CDDEserverApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDDEserverApp initialization
BOOL CDDEserverApp::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
CDDEserverDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 35940 2013-06-13 16:54 DDEserver\DDEserver.aps
文件 1271 2013-06-13 17:05 DDEserver\DDEserver.clw
文件 2105 2013-06-13 16:17 DDEserver\DDEserver.cpp
文件 4217 2013-06-13 16:53 DDEserver\DDEserver.dsp
文件 543 2013-06-13 16:17 DDEserver\DDEserver.dsw
文件 1357 2013-06-13 16:17 DDEserver\DDEserver.h
文件 41984 2013-06-13 17:06 DDEserver\DDEserver.ncb
文件 53760 2013-06-13 17:06 DDEserver\DDEserver.opt
文件 1301 2013-06-13 17:03 DDEserver\DDEserver.plg
文件 5566 2013-06-13 16:54 DDEserver\DDEserver.rc
文件 7304 2013-06-13 17:05 DDEserver\DDEserverDlg.cpp
文件 1422 2013-06-13 16:34 DDEserver\DDEserverDlg.h
文件 3179520 2013-06-13 17:03 DDEserver\Debug\DDEserver.bsc
文件 110668 2013-06-13 17:03 DDEserver\Debug\DDEserver.exe
文件 228428 2013-06-13 17:03 DDEserver\Debug\DDEserver.ilk
文件 14201 2013-06-13 16:52 DDEserver\Debug\DDEserver.obj
文件 6931704 2013-06-13 16:52 DDEserver\Debug\DDEserver.pch
文件 386048 2013-06-13 17:03 DDEserver\Debug\DDEserver.pdb
文件 2856 2013-06-13 16:54 DDEserver\Debug\DDEserver.res
文件 0 2013-06-13 16:52 DDEserver\Debug\DDEserver.sbr
文件 31853 2013-06-13 17:03 DDEserver\Debug\DDEserverDlg.obj
文件 0 2013-06-13 17:03 DDEserver\Debug\DDEserverDlg.sbr
文件 105686 2013-06-13 16:52 DDEserver\Debug\StdAfx.obj
文件 1374898 2013-06-13 16:52 DDEserver\Debug\StdAfx.sbr
文件 205824 2013-06-13 17:03 DDEserver\Debug\vc60.idb
文件 372736 2013-06-13 17:03 DDEserver\Debug\vc60.pdb
文件 3633 2013-06-13 16:17 DDEserver\ReadMe.txt
文件 1078 2013-06-13 16:17 DDEserver\res\DDEserver.ico
文件 401 2013-06-13 16:17 DDEserver\res\DDEserver.rc2
文件 733 2013-06-13 16:25 DDEserver\Resource.h
............此处省略8个文件信息
- 上一篇:孙鑫VC++深入详解教程(全20讲)PPT讲义及源代码
- 下一篇:MFC各种遍历
相关资源
- 网络编程HttpServer c++实现
- SQL server compact 3.5
- 基于C语言和SQL SERVER数据库实现的图书
- 进销存管理系统MFC SqlServer编程
- 服务端和客户端(MFC CSocket)
- IEC104规约Server及Client实现
- mfc配合listbox操作数据库
- C/C++使用ODBC操作SQL server数据库
- C/C++使用ODBC连接SQL server数据库完整流
- MFC ADO方法链接SQlServer数据库vc6实现
- 数据库课设SQL Server 2000 + Visual C++客户
- 简单易懂C++ WebServer接口开发源代码
- 最好用的OPC Server开发包OPCServer开发工
- MFC与SQL Server
- 数据库课程设计(教室管理信息系统
- FTP服务器MFC源码
- vs+mssql实现医药管理信息系统实验报告
- c c++嵌入式系统编程 pdf 中文版+英文版
- MFC websocket server | MFC websocket服务器
- 个人收支财务管理系统 VC6.0MFC+ sql s
- Visual+C++与SQL+Server开发仓库管理系统
- winsocket编程实现简单 server端和client端
- TFTP服务器端
- SMTP服务器端MFC
- 商品销售管理系统源码和附加数据库
- 数据库大作业,MFC 商品管理系统
- 人力资源管理系统visual c++6.0 +SQL Ser
- Sql Server 2008 绿色版免安装
- Visual Studio C#+SQL Server数据库开发与
- vs2010 MFC+ADO方式连接sql server实现商品
评论
共有 条评论