资源简介
用C++编写的基于TCP/IP的Modbus网络通讯工具源码,据参考价值。
代码片段和文件信息
// Client.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Client.h“
#include “ClientDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClientApp
BEGIN_MESSAGE_MAP(CClientApp CWinApp)
//{{AFX_MSG_MAP(CClientApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CClientApp construction
CClientApp::CClientApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CClientApp object
CClientApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CClientApp initialization
BOOL CClientApp::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
//初始化套接字
WSADATA wsd;
AfxSocketInit(&wsd);
CClientDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 41004 2013-03-18 19:11 demo0313\Client.aps
文件 1519 2009-03-07 13:06 demo0313\Client.clw
文件 2118 2007-05-08 08:52 demo0313\Client.cpp
文件 4360 2007-05-08 08:52 demo0313\Client.dsp
文件 535 2007-05-08 08:52 demo0313\Client.dsw
文件 1324 2007-05-08 08:52 demo0313\Client.h
文件 48640 2009-03-07 13:06 demo0313\Client.opt
文件 8667 2013-03-18 19:11 demo0313\Client.rc
文件 878 2013-03-17 19:04 demo0313\Client.sln
..A..H. 18944 2013-03-19 20:24 demo0313\Client.suo
文件 8013 2013-03-19 18:11 demo0313\Client.vcxproj
文件 2093 2013-03-17 20:05 demo0313\Client.vcxproj.filters
文件 143 2013-03-17 13:55 demo0313\Client.vcxproj.user
文件 8831 2013-03-19 19:41 demo0313\ClientDlg.cpp
文件 1892 2013-03-18 19:47 demo0313\ClientDlg.h
文件 3378 2013-03-19 19:41 demo0313\Debug\cl.command.1.tlog
文件 119478 2013-03-19 19:41 demo0313\Debug\CL.read.1.tlog
文件 2434 2013-03-19 19:41 demo0313\Debug\CL.write.1.tlog
文件 82432 2013-03-19 19:41 demo0313\Debug\Client.exe
文件 667 2013-03-19 18:11 demo0313\Debug\Client.exe.em
文件 68 2013-03-19 18:11 demo0313\Debug\Client.exe.em
文件 381 2013-03-19 19:41 demo0313\Debug\Client.exe.intermediate.manifest
文件 1669924 2013-03-19 19:41 demo0313\Debug\Client.ilk
文件 86 2013-03-19 19:41 demo0313\Debug\Client.lastbuildstate
文件 2461 2013-03-19 19:41 demo0313\Debug\Client.log
文件 132772 2013-03-19 18:11 demo0313\Debug\Client.obj
文件 20381696 2013-03-19 18:11 demo0313\Debug\Client.pch
文件 4033536 2013-03-19 19:41 demo0313\Debug\Client.pdb
文件 3880 2013-03-19 18:11 demo0313\Debug\Client.res
文件 168290 2013-03-19 19:41 demo0313\Debug\ClientDlg.obj
............此处省略58个文件信息
相关资源
- openal 所有安装程序及配置资料
- 精通Visual C++数字图像处理技术与工程
- 21天学通C++第四版中文版
- C++设计新思维简体中文版清晰
- vc6.0调用vs2008 CImage类
- GPS伪距差分程序C++
- VC++6.0从入门到精通
- VB6 VC6最佳打包工具InstallShield,内附教
- vcredist x64 合集 含2005Sp1 2008 2010
- mfc编程共85个
- C#封装C++DLL并调用
- 数据结构C++版第二版--王红梅所有课件
- 正运动控制器入门程序例程vc++6.0版
- Exceptional C++中文版 绝对清晰带目录
- MFC销售管理SaleSystem.rar
- c++车牌识别
- VS2017C++windows桌面应用程序项目OpenCV及
- C++ 画直线、三角形、矩形、直线
- c++程序设计-刘振安书籍含PPT
- 数据结构(C++语言版) 第三版完整版
- VC6.0中文版
- C++ Primer Plus中文版第六版
- vscode c/c++扩展(cpptools v0.22.1)离线安
- c++ word\\excel\\ppt转pdf .rar
- Algorithms in C++ Parts 1-4 (3rd Edition)
- VC面向对象与可视化程序设计清华黄维
- VC6.0实现socket、tcp传输,支持各类文件
- c++读取csv文件
- 《Visual+C%2B%2B+6.0+时尚编程百例》100个
- 用VC++编写的一个动态效果的简单动画
评论
共有 条评论