• 大小: 5.48MB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2023-09-28
  • 语言: C/C++
  • 标签: MFCUSBCAN  

资源简介

在VC6.0中利用MFC技术,结合周立功USBCAN函数库,编写了上位机程序界面控制下位机进行相应运动。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “MASTER.h“
#include “MASTERDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMASTERApp

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

/////////////////////////////////////////////////////////////////////////////
// CMASTERApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CMASTERApp object

CMASTERApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CMASTERApp initialization

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

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

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       36864  2016-04-07 01:24  ControlCAN.dll
     文件        3618  2016-06-25 16:47  ControlCAN.h
     文件        5932  2003-07-28 11:20  ControlCAN.lib
     目录           0  2016-06-27 15:12  Debug\
     文件       36864  2016-04-07 01:24  Debug\ControlCAN.dll
     文件     4834304  2016-06-27 15:12  Debug\MASTER.bsc
     文件      118858  2016-06-27 15:12  Debug\MASTER.exe
     文件      229812  2016-06-27 15:12  Debug\MASTER.ilk
     文件       13834  2016-06-27 15:07  Debug\MASTER.obj
     文件     6877268  2016-06-26 22:50  Debug\MASTER.pch
     文件      386048  2016-06-27 15:12  Debug\MASTER.pdb
     文件        3940  2016-06-27 13:52  Debug\MASTER.res
     文件           0  2016-06-27 15:07  Debug\MASTER.sbr
     文件       43639  2016-06-27 15:12  Debug\MASTERDlg.obj
     文件           0  2016-06-27 15:12  Debug\MASTERDlg.sbr
     文件       10944  2016-06-27 15:12  Debug\Settings.obj
     文件           0  2016-06-27 15:12  Debug\Settings.sbr
     文件      105686  2016-06-26 22:52  Debug\StdAfx.obj
     文件     1373039  2016-06-26 22:52  Debug\StdAfx.sbr
     文件      222208  2016-06-27 15:14  Debug\vc60.idb
     文件      372736  2016-06-27 15:12  Debug\vc60.pdb
     目录           0  2016-06-25 12:49  kerneldlls\
     文件       53248  2011-03-16 14:58  kerneldlls\CAN232.dll
     文件      237568  2014-09-16 14:10  kerneldlls\CANETE.dll
     文件      303104  2014-09-01 17:20  kerneldlls\CANET_TCP.dll
     文件      303104  2014-09-26 18:37  kerneldlls\CANWIFI_TCP.dll
     文件      233472  2014-09-01 15:32  kerneldlls\CANWIFI_UDP.dll
     文件       40960  2011-03-16 14:58  kerneldlls\gisadll.dll
     文件       40960  2011-03-16 14:58  kerneldlls\gpcidll.dll
     文件       45056  2011-03-16 14:58  kerneldlls\isa5420.dll
     文件         458  2014-08-22 09:23  kerneldlls\kerneldll.ini
............此处省略26个文件信息

评论

共有 条评论

相关资源