资源简介
用MFC编写的数据包校验与常用校验算法(数据处理方法与串口通信用户层协议的编制)。编写的代码部分都有中文注释,对刚开始接触MFC的学习者来说是很好的资源!
代码片段和文件信息
// CRCProgram.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “CRCProgram.h“
#include “CRCProgramDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCRCProgramApp
BEGIN_MESSAGE_MAP(CCRCProgramApp CWinApp)
//{{AFX_MSG_MAP(CCRCProgramApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CCRCProgramApp construction
CCRCProgramApp::CCRCProgramApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCRCProgramApp object
CCRCProgramApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCRCProgramApp initialization
BOOL CCRCProgramApp::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
CCRCProgramDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1078 2007-06-26 13:15 res\CRCProgram.ico
文件 402 2007-06-26 13:15 res\CRCProgram.rc2
文件 21216 2009-01-02 16:17 CRCProgram.aps
文件 1402 2009-01-02 16:17 CRCProgram.clw
文件 2119 2007-06-26 13:15 CRCProgram.cpp
文件 4231 2007-06-26 13:15 CRCProgram.dsp
文件 545 2007-06-26 13:15 CRCProgram.dsw
文件 1368 2007-06-26 13:15 CRCProgram.h
文件 58368 2009-01-02 16:17 CRCProgram.ncb
文件 48640 2009-01-02 16:17 CRCProgram.opt
文件 1645 2009-01-02 16:17 CRCProgram.plg
文件 5683 2007-06-26 13:15 CRCProgram.rc
文件 6900 2007-06-26 13:15 CRCProgramDlg.cpp
文件 1607 2007-06-26 13:15 CRCProgramDlg.h
文件 3651 2007-06-26 13:15 ReadMe.txt
文件 826 2007-06-26 13:15 resource.h
文件 212 2007-06-26 13:15 StdAfx.cpp
文件 1054 2007-06-26 13:15 StdAfx.h
目录 0 2009-01-02 16:18 res
----------- --------- ---------- ----- ----
161165 20
- 上一篇:mfc + d3d实现的视频播放器
- 下一篇:汽车修理厂管理系统(C++开发)
相关资源
- labview与单片机rs232串口通信
- PIC18F452串口通信程序
- C++串口通信类,包含头文件和CPP文件
- RS232串口通信C++
- Visual C++串口通信
- 基于MFC的串口编程,实现两个计算机
- 串口通信C++源代码
- C++ Serialport 串口通信类
- c++builder6.0做的mscomm串口通讯
- VS2012+MFC串口通信
- visualc++下位机温度测量串口通信与实
- QT C++ 多线程支持多串口通信
- VS与串口通信
- 串口通信c程序
- VC++ 编写的 Modbus 协议类 并附带串口通
- 完整串口通信程序(发送和接受)V
- 串口调试助手源代码(MFC+SComm)
- 非常有用的单片机C语言程序.rar
- VC++串口通信20个经典源码合集.zip
- VC++串口通信20个经典源码合集
- 单片机串口通信(方式1)
- 蓝牙串口通信(源码+视频)
- qt 串口通信
- stm32串口通信
- arduino 舵机控制 串口通信 超声波传感
- 设备老化测试工具
- C++ PC_PC串口通信.pdf(图文教程)
- hal 串口通信
- c++ 串口通信程序
- vc实现串口通信的完整代码
评论
共有 条评论