• 大小: 800KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-07-09
  • 语言: C/C++
  • 标签: VC++  MFC  

资源简介

使用VC6.0仿真windows记事本程序,初步实现一定的功能,还需再改善改善。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “EditDemo.h“
#include “EditDemoDlg.h“
//加载skinse皮肤库
#include “SkinSE.h“

#pragma comment(lib“SkinSE.lib“)

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

/////////////////////////////////////////////////////////////////////////////
// CEditDemoApp

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

/////////////////////////////////////////////////////////////////////////////
// CEditDemoApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CEditDemoApp object

CEditDemoApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CEditDemoApp initialization

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

/*
// 分析标准外壳命令、DDE、打开文件操作的命令行
    CCommandLineInfo cmdInfo;
    ParseCommandLine(cmdInfo);
    //获取命令行传过来的参数:双击打开的文件的文件路径名称
    CString strFilePathName = cmdInfo.m_strFileName;

    // 调度在命令行中指定的命令。如果
    // 用 /RegServer、/Register、/Unregserver 或 /Unregister 启动应用程序,则返回 FALSE。
    if (!ProcessShellCommand(cmdInfo))
return FALSE;
*/


//加载皮肤
//::InstallSkinSE(_T(“Themes“) _T(“QQ2009“) TRUE);
//::SkinSE_EnableHookSkin(TRUE);

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

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

     文件        524  2010-08-29 15:01  EditDemo.dsw

     文件       1346  2010-08-29 15:01  EditDemo.h

     文件     123904  2012-05-07 22:00  EditDemo.ncb

     文件      56832  2012-05-07 22:00  EditDemo.opt

     文件        250  2012-05-07 21:57  EditDemo.plg

     文件       8782  2012-05-07 21:37  EditDemo.rc

     文件      17662  2012-05-07 21:54  EditDemoDlg.cpp

     文件       2592  2012-05-07 20:42  EditDemoDlg.h

     文件       1290  2010-09-01 23:34  GotoDlg.cpp

     文件       1256  2010-09-01 23:02  GotoDlg.h

     文件       3615  2010-08-29 15:01  ReadMe.txt

     文件       1851  2012-05-06 16:35  resource.h

     文件      32775  2010-09-01 22:15  SkinSE.h

     文件      58260  2010-03-05 20:54  SkinSE.lib

     文件        210  2010-08-29 15:01  StdAfx.cpp

     文件       1206  2010-09-01 22:38  StdAfx.h

     文件     970752  2010-03-05 20:54  Debug\SkinSE.dll

     文件       2454  2009-11-09 17:45  Debug\Themes\QQ2009\headerctrl_down.bmp

     文件       2454  2009-11-09 17:44  Debug\Themes\QQ2009\headerctrl_normal.bmp

     文件        216  2009-11-09 21:22  Debug\Themes\QQ2009\Headerctrl_Sperator.bmp

     文件       5238  2010-01-13 17:50  Debug\Themes\QQ2009\listctrl_item_hot.bmp

     文件      11934  2010-02-06 23:05  Debug\Themes\QQ2009\listctrl_item_hot360.bmp

     文件       5238  2010-01-13 17:47  Debug\Themes\QQ2009\listctrl_item_select.bmp

     文件      11934  2010-02-06 23:05  Debug\Themes\QQ2009\listctrl_item_select360.bmp

     文件       2758  2009-11-22 17:37  Debug\Themes\QQ2009\menu_bar_back.bmp

     文件       4374  2009-11-04 15:25  Debug\Themes\QQ2009\menu_hot_bkg.bmp

     文件      22854  2009-11-23 22:02  Debug\Themes\QQ2009\menu_item_background.bmp

     文件       6302  2009-11-22 18:20  Debug\Themes\QQ2009\menu_item_down.bmp

     文件       6302  2009-11-22 17:46  Debug\Themes\QQ2009\menu_item_hot.bmp

     文件        374  2009-12-21 16:40  Debug\Themes\QQ2009\menu_item_pup.bmp

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

评论

共有 条评论