• 大小: 2.32MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-13
  • 语言: C/C++
  • 标签: 串口  

资源简介

vc6下串口编程练习;需mscomm.osc控件支持

资源截图

代码片段和文件信息

// KLCom.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “KLCom.h“
#include “KLComDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CKLComApp

BEGIN_MESSAGE_MAP(CKLComApp CWinApp)
//{{AFX_MSG_MAP(CKLComApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CKLComApp construction

CKLComApp::CKLComApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CKLComApp object

CKLComApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CKLComApp initialization

BOOL CKLComApp::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

CKLComDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-09-17 17:16  KLCom\Debug\
     文件      106555  2015-08-02 09:05  KLCom\Debug\KLCom - 副本.eee
     文件      106550  2015-09-17 17:16  KLCom\Debug\KLCom.exe
     文件      208688  2015-09-17 17:16  KLCom\Debug\KLCom.ilk
     文件       13653  2015-08-02 09:05  KLCom\Debug\KLCom.obj
     文件     5493172  2015-08-02 09:05  KLCom\Debug\KLCom.pch
     文件      279552  2015-09-17 17:16  KLCom\Debug\KLCom.pdb
     文件        2572  2015-09-17 17:16  KLCom\Debug\KLCom.res
     文件       34881  2015-08-05 18:13  KLCom\Debug\KLComDlg.obj
     文件      105529  2015-08-02 09:05  KLCom\Debug\StdAfx.obj
     文件      205824  2015-09-17 17:16  KLCom\Debug\vc60.idb
     文件      364544  2015-08-05 18:13  KLCom\Debug\vc60.pdb
     文件       20648  2015-09-17 17:15  KLCom\KLCom.aps
     文件        1191  2015-09-17 17:31  KLCom\KLCom.clw
     文件        2049  2009-08-16 05:42  KLCom\KLCom.cpp
     文件        4141  2009-08-16 05:42  KLCom\KLCom.dsp
     文件         535  2009-08-16 05:42  KLCom\KLCom.dsw
     文件        1313  2009-08-16 05:42  KLCom\KLCom.h
     文件       82944  2015-09-17 17:31  KLCom\KLCom.ncb
     文件      299520  2015-09-17 17:31  KLCom\KLCom.opt
     文件         769  2015-09-17 17:16  KLCom\KLCom.plg
     文件        5428  2015-08-07 18:13  KLCom\KLCom.rc
     文件        8539  2015-08-05 18:12  KLCom\KLComDlg.cpp
     文件        1400  2009-08-16 05:42  KLCom\KLComDlg.h
     文件        3561  2009-08-16 05:42  KLCom\ReadMe.txt
     目录           0  2015-09-15 07:25  KLCom\res\
     文件        1078  2009-08-16 05:42  KLCom\res\KLCom.ico
     文件         397  2009-08-16 05:42  KLCom\res\KLCom.rc2
     文件         729  2009-08-16 05:42  KLCom\resource.h
     文件         207  2009-08-16 05:42  KLCom\StdAfx.cpp
     文件        1054  2009-08-16 05:42  KLCom\StdAfx.h
............此处省略0个文件信息

评论

共有 条评论