资源简介
VC++基于mfc 实现对话框打开读取txt文件
VC++基于mfc 实现对话框打开读取txt文件
代码片段和文件信息
// readText.cpp : Defines the class behaviors for the application.
// Dwonload by http://www.codefans.net
#include “stdafx.h“
#include “readText.h“
#include “readTextDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CReadTextApp
BEGIN_MESSAGE_MAP(CReadTextApp CWinApp)
//{{AFX_MSG_MAP(CReadTextApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CReadTextApp construction
CReadTextApp::CReadTextApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CReadTextApp object
CReadTextApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CReadTextApp initialization
BOOL CReadTextApp::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
CReadTextDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
49154 18
- 上一篇:C++编程的猜单词游戏
- 下一篇:vibe算法opencv+c++,RGB图像可用
相关资源
- vibe算法opencv+c++,RGB图像可用
- C++编程的猜单词游戏
- 通用弹道仿真计算程序-C++源代码
- gnss卫星定位 c++ O文件N文件
- 银行家算法c++源代码
- c++ ten超级井字棋源码
- 个人通讯录c++版完整代码
- 全国青少年信息学奥林匹克竞赛教程
- Visual C++ Build Tools 2015 离线包.part1/7
- vc++ 2005 express 完整安装包
- C++ 数据采集
- fastMatch的c++实现(需要opencv支持)
- 基于c++的简单文件传输
- 《C++ GUI QT编程》教程配套
- Visual C++项目开发案例全程实录(第二
- C++ Primer Plus 6th Edition source code files
- CRC32校验程序源代码( C++)
- VC++之MFC类库中文手册一怀去意---
- 华科大c++上机实验答案
- 普通算术编码的C++实现
- 自适应算术编码c++程序
- c/c++控制台游戏
- PE文件格式解析MFCC++源码
- VS2010之MFC入门到精通教程1-55全部
- 基于C++的实时数据库的设计与实现
- linux C/C++实现的通过url访问网页提取网
- fast角点检测c++
- 通讯录管理系统c++版顺序表存储,折
- The C++ Programing language(Special Edition)
- 初学者学习C++ Builder第一个程序模拟聊
评论
共有 条评论