资源简介
自己做的串口调试工具、包含源代码,能运行,希望大家一起学习交流下
代码片段和文件信息
// Cha.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Cha.h“
#include “ChaDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChaApp
BEGIN_MESSAGE_MAP(CChaApp CWinApp)
//{{AFX_MSG_MAP(CChaApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CChaApp construction
CChaApp::CChaApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CChaApp object
CChaApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CChaApp initialization
BOOL CChaApp::InitInstance()
{
if(!AfxSocketInit())
{
AfxMessageBox(“加载套接字失败!“);
return FALSE;
}
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
CChaDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 38348 2018-04-21 10:54 Cha\Cha.aps
文件 2461 2018-04-21 10:57 Cha\Cha.clw
文件 2107 2018-04-19 15:47 Cha\Cha.cpp
文件 4525 2018-04-20 21:56 Cha\Cha.dsp
文件 556 2018-04-20 11:09 Cha\Cha.dsw
文件 1291 2018-04-19 15:31 Cha\Cha.h
文件 66560 2018-04-21 10:59 Cha\Cha.ncb
文件 50688 2018-04-21 10:59 Cha\Cha.opt
文件 240 2018-04-21 10:56 Cha\Cha.plg
文件 9948 2018-04-21 10:54 Cha\Cha.rc
文件 12873 2018-04-21 10:54 Cha\ChaDlg.cpp
文件 2231 2018-04-20 20:54 Cha\ChaDlg.h
文件 3720192 2018-04-21 10:54 Cha\Debug\Cha.bsc
文件 122936 2018-04-21 10:54 Cha\Debug\Cha.exe
文件 273804 2018-04-21 10:54 Cha\Debug\Cha.ilk
文件 15730 2018-04-20 21:53 Cha\Debug\Cha.obj
文件 7012732 2018-04-20 21:53 Cha\Debug\Cha.pch
文件 443392 2018-04-21 10:54 Cha\Debug\Cha.pdb
文件 4232 2018-04-21 10:54 Cha\Debug\Cha.res
文件 0 2018-04-20 21:53 Cha\Debug\Cha.sbr
文件 57808 2018-04-21 10:54 Cha\Debug\ChaDlg.obj
文件 0 2018-04-21 10:54 Cha\Debug\ChaDlg.sbr
文件 47379 2018-04-20 21:53 Cha\Debug\mscomm.obj
文件 0 2018-04-20 21:53 Cha\Debug\mscomm.sbr
文件 106363 2018-04-20 21:53 Cha\Debug\StdAfx.obj
文件 1382965 2018-04-20 21:53 Cha\Debug\StdAfx.sbr
文件 214016 2018-04-21 10:56 Cha\Debug\vc60.idb
文件 380928 2018-04-21 10:54 Cha\Debug\vc60.pdb
文件 8569 2018-04-20 09:38 Cha\mscomm.cpp
文件 3221 2018-04-20 09:38 Cha\mscomm.h
............此处省略12个文件信息
相关资源
- 按键控制系统音量
- 基于SOCKECT的TCP的通信
- 二维图形的裁剪
- 远程控制开源代码
- 答题卡识别小程序
- gnss时间转化
- 基于VS2008的可视化时钟
- 图像处理源代码
- DM码的识别
- 最完整的qq参赛作品
- 鼠标手势MouseGesture-1.0.0.2
- 获取文件和文件夹属性
- 单文档多视图与相互切换
- 基于Wince5.0的通讯录
- opencv stitching拼接
- 青鸟消防辅助编程工具.exe
- 敏感词统计与过滤系统
- 一个复杂的电梯调度程序
- 中国象棋和五子棋的算法讲解和vc源代
- 两个吃一个棋类游戏
- tiger1.zip
- TCP通信存入数据库
- Flappy Bird 试验版
- IGS数据工具
- PDF阅读器源码
- 综合使用作业调度和进程调度模拟作
- iProTool.zip
- AutoCAD绘图交换文件DXF实体对象说明
- SkinSharp 完整破解版 带51款皮肤
- 使用winring监控cpu温度
评论
共有 条评论