资源简介
通讯录设计基于MFC的个人通讯录管理系统,集增加/删除联系人,查询(按性别、年龄、电话号码、单位等查询),保存、修改、载入等各种功能于一体。
资源积分:4分
代码片段和文件信息
// AddressBook.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “AddressBook.h“
#include “MainFrm.h“
#include “AddressBookDoc.h“
#include “AddressBookView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAddressBookApp
BEGIN_MESSAGE_MAP(CAddressBookApp CWinApp)
//{{AFX_MSG_MAP(CAddressBookApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAddressBookApp construction
CAddressBookApp::CAddressBookApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CAddressBookApp object
CAddressBookApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CAddressBookApp initialization
BOOL CAddressBookApp::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.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(0); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CAddressBookDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CAddressBookView));
AddDocTemplate(pDocTemplate);
// Enable DDE Execute open
EnableShellOpen();
RegisterShellFileTypes(TRUE);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWn
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 204 2008-08-29 17:16 200900814210通讯录\说明.txt
文件 179200 2011-01-06 05:37 200900814210通讯录\课设报告.doc
文件 150 2008-03-17 02:57 200900814210通讯录\Release\AddressBook.bk
文件 32768 2008-03-01 01:03 200900814210通讯录\Release\AddressBook.exe
文件 27648 2011-01-05 17:45 200900814210通讯录\通讯录\AddressBook.aps
文件 2692 2011-01-06 06:06 200900814210通讯录\通讯录\AddressBook.clw
文件 4318 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBook.cpp
文件 4784 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBook.dsp
文件 530 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBook.dsw
文件 1411 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBook.h
文件 205824 2011-01-06 06:06 200900814210通讯录\通讯录\AddressBook.ncb
文件 50688 2011-01-06 06:06 200900814210通讯录\通讯录\AddressBook.opt
文件 1218 2011-01-06 03:00 200900814210通讯录\通讯录\AddressBook.plg
文件 11030 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBook.rc
文件 714 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBook.reg
文件 2343 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBookDoc.cpp
文件 1602 2006-12-05 07:09 200900814210通讯录\通讯录\AddressBookDoc.h
文件 12749 2011-01-06 03:00 200900814210通讯录\通讯录\AddressBookView.cpp
文件 2409 2011-01-01 17:04 200900814210通讯录\通讯录\AddressBookView.h
文件 1663 2011-01-01 17:04 200900814210通讯录\通讯录\MainFrm.cpp
文件 1421 2006-12-05 07:09 200900814210通讯录\通讯录\MainFrm.h
文件 931 2006-12-05 07:09 200900814210通讯录\通讯录\Person.cpp
文件 725 2006-12-05 07:09 200900814210通讯录\通讯录\Person.h
文件 4406 2006-12-05 07:09 200900814210通讯录\通讯录\ReadMe.txt
文件 1103 2006-12-05 07:09 200900814210通讯录\通讯录\resource.h
文件 213 2006-12-05 07:09 200900814210通讯录\通讯录\StdAfx.cpp
文件 999 2006-12-05 07:09 200900814210通讯录\通讯录\StdAfx.h
文件 42 2011-01-01 16:44 200900814210通讯录\通讯录\无标题.bk
文件 61 2011-01-01 16:54 200900814210通讯录\通讯录\无标题2.bk
文件 122963 2011-01-05 18:23 200900814210通讯录\通讯录\Debug\AddressBook.exe
............此处省略34个文件信息
- 上一篇:后方交会C++程序
- 下一篇:STM32F4超声波测距
相关资源
- 基于MFC的个人通讯录管理系统
- MFC简单通讯录制作
- C++学生通讯录系统
- VS2010 MFC 个人信息管理系统
- C++大作业 MFC实现个人通讯录
- mfc课程设计 通讯录
- VC++6.0+sql server,学院通讯录管理系统
- 数据库课程设计_个人通讯录
- VC++通讯录系统VC++源代码程序
- 数据结构实验报告~通讯录管理系统
- 学生通讯录管理系统 C语言课程设计
- 简单的通讯录程序 c++
- 基于TCP/IP和Sqlite3数据库的网络通讯录
- 一个简单的C语言通讯录程序
- 通讯录管理系统C++
- c语言通讯录链表文件读写
- C语言学生通讯录管理系统
- TelBook.cpp通讯录课程设计
- C语言实现链表通讯录
- 班级通讯录管理系统C语言课程设计
- 通讯录管理系统含源代码
- 数据结构哈希表实现通讯录
- 数据结构课程设计-班级通讯录
- C语言连接mysql,实现通讯录功能
- MFC用树控件制作简单通讯录
- 个人通讯录c++版完整代码
- 通讯录管理系统c++版顺序表存储,折
- C语言 个人通讯录管理系统
- C++版通讯录管理系统的设计与实现
- c语言课程设计通讯录管理系统设计报
评论
共有 条评论