资源简介
实现16进制传输数字,适用于简单网络控制硬件设备
代码片段和文件信息
// BD.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “BD.h“
#include “BDDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CBDApp
BEGIN_MESSAGE_MAP(CBDApp CWinApp)
//{{AFX_MSG_MAP(CBDApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CBDApp construction
CBDApp::CBDApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CBDApp object
CBDApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CBDApp initialization
BOOL CBDApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
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
CBDDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 36120 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\BD.APS
文件 1798 2010-11-11 01:08 BD(修改逐个发送十六进制)\BD\BD.clw
文件 2101 2010-11-10 21:48 BD(修改逐个发送十六进制)\BD\BD.cpp
文件 4340 2010-11-11 00:54 BD(修改逐个发送十六进制)\BD\BD.dsp
文件 529 2010-11-10 21:48 BD(修改逐个发送十六进制)\BD\BD.dsw
文件 1280 2010-11-10 21:48 BD(修改逐个发送十六进制)\BD\BD.h
文件 58368 2010-11-11 01:08 BD(修改逐个发送十六进制)\BD\BD.ncb
文件 54784 2010-11-11 01:08 BD(修改逐个发送十六进制)\BD\BD.opt
文件 238 2010-11-11 01:08 BD(修改逐个发送十六进制)\BD\BD.plg
文件 6036 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\BD.rc
文件 5152 2010-11-11 00:54 BD(修改逐个发送十六进制)\BD\BDDlg.cpp
文件 1491 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\BDDlg.h
文件 110667 2010-11-11 00:55 BD(修改逐个发送十六进制)\BD\Debug\BD.exe
文件 256940 2010-11-11 00:55 BD(修改逐个发送十六进制)\BD\Debug\BD.ilk
文件 13995 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\Debug\BD.obj
文件 5572688 2010-11-10 22:10 BD(修改逐个发送十六进制)\BD\Debug\BD.pch
文件 410624 2010-11-11 00:55 BD(修改逐个发送十六进制)\BD\Debug\BD.pdb
文件 2844 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\Debug\BD.res
文件 32833 2010-11-11 00:55 BD(修改逐个发送十六进制)\BD\Debug\BDDlg.obj
文件 7407 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\Debug\MySocket.obj
文件 13514 2010-11-11 00:19 BD(修改逐个发送十六进制)\BD\Debug\SetupDlg.obj
文件 106544 2010-11-10 22:10 BD(修改逐个发送十六进制)\BD\Debug\StdAfx.obj
文件 214016 2010-11-11 01:08 BD(修改逐个发送十六进制)\BD\Debug\vc60.idb
文件 364544 2010-11-11 00:55 BD(修改逐个发送十六进制)\BD\Debug\vc60.pdb
文件 1155 2010-11-10 23:41 BD(修改逐个发送十六进制)\BD\MySocket.cpp
文件 1255 2010-11-10 23:40 BD(修改逐个发送十六进制)\BD\MySocket.h
文件 3507 2010-11-10 21:48 BD(修改逐个发送十六进制)\BD\ReadMe.txt
文件 1078 2010-11-10 21:48 BD(修改逐个发送十六进制)\BD\res\BD.ico
文件 394 2010-11-10 21:48 BD(修改逐个发送十六进制)\BD\res\BD.rc2
文件 954 2010-11-11 00:38 BD(修改逐个发送十六进制)\BD\resource.h
............此处省略54个文件信息
评论
共有 条评论