• 大小: 3.76MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-09-10
  • 语言: C/C++
  • 标签: 串口通信  VC++  

资源简介

原创VC++编写串口通信上位机界面 本人做接口实验时上位机部分

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “hiekou.h“
#include “hiekouDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CHiekouApp

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

/////////////////////////////////////////////////////////////////////////////
// CHiekouApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CHiekouApp object

CHiekouApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CHiekouApp initialization

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

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    5366784  2006-05-18 08:17  接口试验1\上位机\Debug\hiekou.bsc

     文件     122932  2006-05-18 08:17  接口试验1\上位机\Debug\hiekou.exe

     文件     381528  2006-05-18 08:17  接口试验1\上位机\Debug\hiekou.ilk

     文件      14928  2008-06-16 22:38  接口试验1\上位机\Debug\hiekou.obj

     文件    6931104  2008-06-16 22:29  接口试验1\上位机\Debug\hiekou.pch

     文件     459776  2006-05-16 15:24  接口试验1\上位机\Debug\hiekou.pdb

     文件       3808  2008-06-16 22:29  接口试验1\上位机\Debug\hiekou.res

     文件          0  2008-06-16 22:38  接口试验1\上位机\Debug\hiekou.sbr

     文件      48175  2006-05-18 08:17  接口试验1\上位机\Debug\hiekouDlg.obj

     文件          0  2006-05-18 08:17  接口试验1\上位机\Debug\hiekouDlg.sbr

     文件      48029  2008-06-16 22:29  接口试验1\上位机\Debug\mscomm.obj

     文件          0  2008-06-16 22:29  接口试验1\上位机\Debug\mscomm.sbr

     文件     105970  2008-06-16 22:29  接口试验1\上位机\Debug\StdAfx.obj

     文件    1366679  2008-06-16 22:29  接口试验1\上位机\Debug\StdAfx.sbr

     文件     222208  2006-05-18 08:17  接口试验1\上位机\Debug\vc60.idb

     文件     372736  2006-05-16 15:24  接口试验1\上位机\Debug\vc60.pdb

     目录          0  2006-05-24 20:14  接口试验1\上位机\Debug

     文件      22796  2006-05-23 17:00  接口试验1\上位机\hiekou.aps

     文件       2236  2006-05-23 17:06  接口试验1\上位机\hiekou.clw

     文件       2063  2008-05-27 19:06  接口试验1\上位机\hiekou.cpp

     文件       4585  2008-05-27 23:05  接口试验1\上位机\hiekou.dsp

     文件        579  2008-05-27 19:34  接口试验1\上位机\hiekou.dsw

     文件       1324  2008-05-27 19:06  接口试验1\上位机\hiekou.h

     文件     189440  2006-05-23 18:15  接口试验1\上位机\hiekou.ncb

     文件       1267  2006-05-18 08:17  接口试验1\上位机\hiekou.plg

     文件       7578  2008-04-16 15:20  接口试验1\上位机\hiekou.rc

     文件      10957  2006-05-14 10:49  接口试验1\上位机\hiekouDlg.cpp

     文件       1967  2008-06-16 22:38  接口试验1\上位机\hiekouDlg.h

     文件       8569  2008-05-27 19:06  接口试验1\上位机\mscomm.cpp

     文件       3221  2008-05-27 19:06  接口试验1\上位机\mscomm.h

............此处省略39个文件信息

评论

共有 条评论