资源简介
VC++ 向指定串口发送和接收数据(可十六进制)
VC++ 向指定串口发送和接收数据(可十六进制)
代码片段和文件信息
// comm.cpp : Defines the class behaviors for the application.
// Download by http://www.codefans.net
#include “stdafx.h“
#include “comm.h“
#include “commDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCommApp
BEGIN_MESSAGE_MAP(CCommApp CWinApp)
//{{AFX_MSG_MAP(CCommApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CCommApp construction
CCommApp::CCommApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCommApp object
CCommApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCommApp initialization
BOOL CCommApp::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
CCommDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
80381 22
相关资源
- 数据结构课程设计CC++描述[阮宏一][程
- vc++FTP搜索工具()
- 基于VC++的图像修复源代码
- Google C++编码规范
- 简单电梯c++实现
- AES/ECB/PKCS5Padding C++实现
- c++商品管理
- 打印出有向图中的所有环C++
- cocos2dx 3.17 2048游戏的源码
- C++中缀表达式求值
- 一个数字水印的VC++源程序,支持图片
- C++大学教程(第七版)](美)戴特尔
- Visual C++串口通信
- 蜘蛛纸牌VC++
- k-means 源代码C++实现
- QTP 运行报:Microslft Visual C++ Runtime Lib
- A星算法,A*算法C++实现,8数码求解
- 个人账簿管理系统c++
- 单片空间后方交会c++
- C++ Prime中文版第五版
- VC++界面编程之 实现一个画板并提供
- VC++ WTL 9.0 安装包
- 激光雷达数据读取以及显示C++需配置
- 激光雷达UTM-30LX图像采集程序及数据
- horsematch 赛马程序游戏
- VC++ 内存扫描与内存数据读写.rar
- 16点基4dit-fft程序c++
- 排队论C++语言仿真实现
- c++面向对象程序设计 谭浩强第二版习
- 异步网络通信 用C++
评论
共有 条评论