资源简介

MFC下记事本程序,有一丁点BUG,偶尔会有乱码。功能很多,字体设置,背景颜色,状态栏也是自己设置的,同时还可以托盘

资源截图

代码片段和文件信息

// jc记事本.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “jc记事本.h“
#include “jc记事本Dlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CJcApp

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

/////////////////////////////////////////////////////////////////////////////
// CJcApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CJcApp object

CJcApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CJcApp initialization

BOOL CJcApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
       AfxInitRichEdit();
// 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

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

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

     文件          1  2011-08-11 18:04  jc记事本\1.txt

     文件       5103  2011-07-26 11:35  jc记事本\Debug\APPMODUL.obj

     文件     127039  2011-08-11 21:59  jc记事本\Debug\jc记事本.exe

     文件     317372  2011-08-11 21:59  jc记事本\Debug\jc记事本.ilk

     文件      14104  2011-07-26 11:35  jc记事本\Debug\jc记事本.obj

     文件    5500532  2011-07-26 11:35  jc记事本\Debug\jc记事本.pch

     文件     443392  2011-08-11 21:59  jc记事本\Debug\jc记事本.pdb

     文件       5848  2011-07-26 11:35  jc记事本\Debug\jc记事本.res

     文件      83435  2011-08-11 21:59  jc记事本\Debug\jc记事本Dlg.obj

     文件     105539  2011-07-26 11:35  jc记事本\Debug\StdAfx.obj

     文件     205824  2011-08-11 22:05  jc记事本\Debug\vc60.idb

     文件     364544  2011-08-11 21:59  jc记事本\Debug\vc60.pdb

     文件      39336  2011-07-26 10:15  jc记事本\jc记事本.aps

     文件       1659  2011-08-11 22:05  jc记事本\jc记事本.clw

     文件       2051  2011-07-21 22:03  jc记事本\jc记事本.cpp

     文件       4406  2011-07-21 17:04  jc记事本\jc记事本.dsp

     文件        524  2011-07-21 17:04  jc记事本\jc记事本.dsw

     文件       1298  2011-07-21 16:29  jc记事本\jc记事本.h

     文件      66560  2011-08-11 22:05  jc记事本\jc记事本.ncb

     文件      55808  2011-08-11 22:05  jc记事本\jc记事本.opt

     文件       1146  2011-08-11 21:59  jc记事本\jc记事本.plg

     文件       7324  2011-07-26 10:15  jc记事本\jc记事本.rc

     文件      18983  2011-08-11 21:59  jc记事本\jc记事本Dlg.cpp

     文件       2330  2011-07-26 11:15  jc记事本\jc记事本Dlg.h

     文件        605  2011-07-24 17:32  jc记事本\kankan.txt

     文件          5  2011-07-24 08:42  jc记事本\ReadMe.txt

     文件       3774  2011-07-21 16:40  jc记事本\res\Icon_computer_207.ICO

     文件       1078  2011-07-21 16:29  jc记事本\res\jc记事本.ico

     文件        400  2011-07-21 16:29  jc记事本\res\jc记事本.rc2

     文件       1575  2011-07-24 23:45  jc记事本\resource.h

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

评论

共有 条评论