资源简介
用COleRichEditCtrl显示带图文的rtf文件,使用vc++6.0编译
代码片段和文件信息
// 001.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “001.h“
#include “001Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy001App
BEGIN_MESSAGE_MAP(CMy001App CWinApp)
//{{AFX_MSG_MAP(CMy001App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMy001App construction
CMy001App::CMy001App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy001App object
CMy001App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy001App initialization
BOOL CMy001App::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
CMy001Dlg 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 2015-05-18 19:03 showrtf\
文件 34584 2015-05-18 18:47 showrtf\001.aps
文件 753 2015-05-18 19:03 showrtf\001.clw
文件 2043 2015-05-18 18:43 showrtf\001.cpp
文件 4247 2015-05-18 19:03 showrtf\001.dsp
文件 512 2015-05-18 19:03 showrtf\001.dsw
文件 1301 2015-05-18 18:43 showrtf\001.h
文件 50176 2015-05-18 19:03 showrtf\001.ncb
文件 49664 2015-05-18 19:03 showrtf\001.opt
文件 531 2015-05-18 19:01 showrtf\001.plg
文件 4546 2015-05-18 18:47 showrtf\001.rc
文件 3178 2015-05-18 19:01 showrtf\001Dlg.cpp
文件 1603 2015-05-18 18:52 showrtf\001Dlg.h
文件 5471 2015-05-18 18:59 showrtf\OleRichEditCtrl.cpp
文件 3200 2015-05-18 18:59 showrtf\OleRichEditCtrl.h
文件 3531 2015-05-18 18:43 showrtf\ReadMe.txt
目录 0 2015-05-18 18:43 showrtf\res\
文件 589 2015-05-18 18:45 showrtf\resource.h
文件 1078 2015-05-18 18:43 showrtf\res\001.ico
文件 395 2015-05-18 18:43 showrtf\res\001.rc2
文件 205 2015-05-18 18:43 showrtf\StdAfx.cpp
文件 1054 2015-05-18 18:43 showrtf\StdAfx.h
相关资源
- MFC电梯仿真模拟源码超酷
- MFC设置静态文本框颜色的类
- MFC按钮美化
- 一款用mfc做的简单的聊天室
- 使用VS2008MFC读取Excel里的数据
- Cantor集算法实现
- 利用MFC ODBC操作Access数据库实现显示、
- vc++6.0 基于mfc音乐播放器
- 配置OpenGL所需文件全
- MFC类图结构简图
- mfc获取鼠标位置颜色
- 电梯控制模拟程序MFC
- mfc 窗口分割实现多视图切换
- 纸牌 windows 纸牌
- MFC 打开word、ppt、pdf文件
- 获取网络时间校正本地系统时间,C
- MFC程序开发之聊天室客户端+服务器源
- MFCC梅尔倒谱参数及matlab代码
- mfc 贪吃蛇游戏 MFC实现贪吃蛇小游戏
- MFC实现类似Windows绘图的文字输入功能
- 绝对定向mfc源程序
- TCP一对多通信_基于MFC多线程
- MFC单文档程序连接Access数据库
- 货品的进销存管理系统,MFC编译
- MFC综合实战项目
- 生产者消费者算法图形化演示系统
- MFC 界面编程13个
- MFC入门教程:1天深入浅出MFC
- 摄影测量空间后方交会程序合集,含
- 基于MFC的计算器(功能非常齐全:进
评论
共有 条评论