资源简介

MFC实现10进制、2进制、16 进制和ASCII码间的相互转换

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “MFC16_10.h“
#include “MFC16_10Dlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CMFC16_10App

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

/////////////////////////////////////////////////////////////////////////////
// CMFC16_10App construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CMFC16_10App object

CMFC16_10App theApp;

/////////////////////////////////////////////////////////////////////////////
// CMFC16_10App initialization

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

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

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

     文件     106549  2014-01-14 16:04  MFC16_10\Debug\MFC16_10.exe

     文件     309768  2014-01-14 16:04  MFC16_10\Debug\MFC16_10.ilk

     文件      12886  2014-01-14 16:04  MFC16_10\Debug\MFC16_10.obj

     文件    5511180  2014-01-13 10:08  MFC16_10\Debug\MFC16_10.pch

     文件     386048  2014-01-14 16:04  MFC16_10\Debug\MFC16_10.pdb

     文件       3352  2014-01-14 09:16  MFC16_10\Debug\MFC16_10.res

     文件      38014  2014-01-14 16:04  MFC16_10\Debug\MFC16_10Dlg.obj

     文件     105502  2014-01-13 10:08  MFC16_10\Debug\StdAfx.obj

     文件     214016  2014-01-14 16:04  MFC16_10\Debug\vc60.idb

     文件     364544  2014-01-14 16:04  MFC16_10\Debug\vc60.pdb

     文件      36724  2014-01-14 09:16  MFC16_10\MFC16_10.APS

     文件       2003  2014-01-14 16:07  MFC16_10\MFC16_10.clw

     文件       2091  2014-01-13 10:05  MFC16_10\MFC16_10.cpp

     文件       4195  2014-01-13 10:05  MFC16_10\MFC16_10.dsp

     文件        539  2014-01-13 10:05  MFC16_10\MFC16_10.dsw

     文件       1346  2014-01-13 10:05  MFC16_10\MFC16_10.h

     文件      58368  2014-01-14 16:07  MFC16_10\MFC16_10.ncb

     文件      49664  2014-01-14 16:07  MFC16_10\MFC16_10.opt

     文件       1050  2014-01-14 16:04  MFC16_10\MFC16_10.plg

     文件       6813  2014-01-14 09:16  MFC16_10\MFC16_10.rc

     文件       7863  2014-01-14 09:14  MFC16_10\MFC16_10Dlg.cpp

     文件       1594  2014-01-14 16:04  MFC16_10\MFC16_10Dlg.h

     文件       3615  2014-01-13 10:05  MFC16_10\ReadMe.txt

     文件       1078  2014-01-13 10:05  MFC16_10\res\MFC16_10.ico

     文件        400  2014-01-13 10:05  MFC16_10\res\MFC16_10.rc2

     文件       1468  2014-01-14 09:14  MFC16_10\resource.h

     文件        210  2014-01-13 10:05  MFC16_10\StdAfx.cpp

     文件       1054  2014-01-13 10:05  MFC16_10\StdAfx.h

     目录          0  2014-01-14 16:04  MFC16_10\Debug

     目录          0  2014-01-13 10:05  MFC16_10\res

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

评论

共有 条评论