• 大小: 3.34MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-28
  • 语言: 其他
  • 标签: 上位机  串口  

资源简介

串口收发程序,可在两台电脑之间进行文件传输 采用事件线程驱动,产生收发消息 windows API实现

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “PC2PC.h“

#include “MainFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMainframe

IMPLEMENT_DYNCREATE(CMainframe CframeWnd)

BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

static UINT indicators[] =
{
ID_SEPARATOR           // status line indicator
ID_SEPARATOR           //增加一个状态栏位置,用来显示串口参数信息
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};

/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction

CMainframe::CMainframe()
{
// TODO: add member initialization code here

}

CMainframe::~CMainframe()
{
}

int CMainframe::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CframeWnd::OnCreate(lpCreateStruct) == -1)
return -1;

if (!m_wndToolBar.CreateEx(this TBstyle_FLAT WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINframe))
{
TRACE0(“Failed to create toolbar\n“);
return -1;      // fail to create
}

if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
  sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1;      // fail to create
}

// TODO: Delete these three lines if you don‘t want the toolbar to
//  be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
//this->Settitle(“发送端“);
return 0;
}

BOOL CMainframe::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CframeWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics

#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}

void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers


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

     文件       2604  2005-03-29 20:48  12\MainFrm.cpp

     文件       1581  2005-03-25 09:35  12\MainFrm.h

     文件      28580  2009-02-26 17:28  12\PC2PC.APS

     文件       2448  2009-02-26 17:30  12\PC2PC.clw

     文件       4096  2005-03-23 20:15  12\PC2PC.cpp

     文件       4659  2005-03-23 22:29  12\PC2PC.dsp

     文件        535  2005-03-23 20:15  12\PC2PC.dsw

     文件       1345  2005-03-23 20:15  12\PC2PC.h

     文件   12717056  2012-06-10 13:44  12\PC2PC.ncb

     文件      50688  2009-02-26 17:30  12\PC2PC.opt

     文件       2097  2009-02-26 17:28  12\PC2PC.plg

     文件      11854  2009-02-03 10:29  12\PC2PC.rc

     文件        875  2012-06-10 13:44  12\PC2PC.sln

    ..A..H.     11776  2012-06-10 13:44  12\PC2PC.suo

     文件       8809  2012-06-10 13:44  12\PC2PC.vcproj

     文件       1427  2012-06-10 13:44  12\PC2PC.vcproj.PC-201204171836.Administrator.user

     文件       1798  2005-03-23 20:15  12\PC2PCDoc.cpp

     文件       1464  2005-03-23 20:15  12\PC2PCDoc.h

     文件      36519  2008-12-03 15:30  12\PC2PCView.cpp

     文件       3675  2005-05-29 22:48  12\PC2PCView.h

     文件       4287  2005-03-23 20:15  12\ReadMe.txt

     文件      12808  2009-02-26 17:28  12\Release\MainFrm.obj

     文件      45056  2009-02-26 17:28  12\Release\PC2PC.exe

     文件      16065  2009-02-26 17:28  12\Release\PC2PC.obj

     文件       7028  2009-02-26 17:28  12\Release\PC2PC.res

     文件       9412  2009-02-26 17:28  12\Release\PC2PCDoc.obj

     文件      55840  2009-02-26 17:28  12\Release\PC2PCView.obj

     文件      11697  2009-02-26 17:28  12\Release\SetupDlg.obj

     文件        786  2009-02-26 17:28  12\Release\StdAfx.obj

     文件      58368  2009-02-26 17:28  12\Release\vc60.idb

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

评论

共有 条评论