资源简介
ASC码和字符间转换的小工具,又mini,又好用
代码片段和文件信息
// Converter.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Converter.h“
#include “ConverterDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CConverterApp
BEGIN_MESSAGE_MAP(CConverterApp CWinApp)
//{{AFX_MSG_MAP(CConverterApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CConverterApp construction
CConverterApp::CConverterApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CConverterApp object
CConverterApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CConverterApp initialization
BOOL CConverterApp::InitInstance()
{
// 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.
CConverterDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2003-03-08 22:59 Converter
文件 1095 2003-03-08 23:00 Converter\Converter.clw
文件 1899 1998-03-15 21:16 Converter\Converter.cpp
文件 4213 1998-03-15 21:16 Converter\Converter.dsp
文件 541 1998-03-15 21:16 Converter\Converter.dsw
文件 1357 1998-03-15 21:16 Converter\Converter.h
文件 58368 2003-03-08 23:00 Converter\Converter.ncb
文件 1514 2003-03-08 23:00 Converter\Converter.plg
文件 3052 2000-03-28 21:44 Converter\ConverterDlg.cpp
文件 1398 2000-03-28 21:44 Converter\ConverterDlg.h
文件 3633 1998-03-15 21:16 Converter\ReadMe.txt
文件 211 1998-03-15 21:16 Converter\StdAfx.cpp
文件 999 1998-03-15 21:16 Converter\StdAfx.h
文件 779 1998-03-15 21:33 Converter\resource.h
目录 0 2003-03-08 22:59 Converter\res
文件 1078 1998-03-15 21:16 Converter\res\Converter.ico
文件 401 1998-03-15 21:16 Converter\res\Converter.rc2
目录 0 2003-03-08 22:59 Converter\Debug
文件 106562 2003-03-08 23:00 Converter\Debug\Converter.exe
文件 35436 2003-03-08 23:00 Converter\Converter.aps
文件 5035 2003-03-08 23:00 Converter\Converter.rc
文件 48640 2003-03-08 23:00 Converter\Converter.opt
----------- --------- ---------- ----- ----
276211 22
- 上一篇:世界各国列表
- 下一篇:QWidget实现QDialog的exec方法
评论
共有 条评论