资源简介
Clock.rar

代码片段和文件信息
// Clock.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Clock.h“
#include “MainFrm.h“
#include “ClockDoc.h“
#include “ClockView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CClockApp
BEGIN_MESSAGE_MAP(CClockApp CWinApp)
//{{AFX_MSG_MAP(CClockApp)
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)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CClockApp construction
CClockApp::CClockApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CClockApp object
CClockApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CClockApp initialization
BOOL CClockApp::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
// 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(); // 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(CClockDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CClockView));
AddDocTemplate(pDocTemplate);
// 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_pMainWnd->UpdateWindow();
return TRUE;
}
/////////
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2370 2009-06-12 10:17 Clock\Clock.clw
文件 4191 2009-06-12 09:42 Clock\Clock.cpp
文件 4534 2009-06-12 09:42 Clock\Clock.dsp
文件 535 2009-06-12 09:42 Clock\Clock.dsw
文件 1345 2009-06-12 09:42 Clock\Clock.h
文件 74752 2002-06-12 23:52 Clock\Clock.ncb
文件 244 2002-06-12 23:52 Clock\Clock.plg
文件 11940 2009-06-12 10:18 Clock\Clock.rc
文件 1722 2009-06-12 09:42 Clock\ClockDoc.cpp
文件 1464 2009-06-12 09:42 Clock\ClockDoc.h
文件 9662 2009-06-12 10:18 Clock\ClockView.cpp
文件 2059 2009-06-12 10:18 Clock\ClockView.h
文件 2535 2009-06-12 10:06 Clock\MainFrm.cpp
文件 1440 2009-06-12 10:06 Clock\MainFrm.h
文件 4287 2009-06-12 09:42 Clock\ReadMe.txt
文件 827 2009-06-12 10:04 Clock\resource.h
文件 207 2009-06-12 09:42 Clock\StdAfx.cpp
文件 1070 2009-06-12 09:47 Clock\StdAfx.h
文件 21760 2002-06-12 23:42 Clock\RCa03516
文件 21760 2002-06-12 23:43 Clock\RCb03516
文件 21760 2002-06-12 23:44 Clock\RCc03516
文件 54784 2002-06-12 23:52 Clock\Clock.opt
文件 118863 2009-06-12 10:18 Clock\Debug\Clock.exe
文件 401800 2009-06-12 10:18 Clock\Debug\Clock.ilk
文件 22830 2009-06-12 10:18 Clock\Debug\Clock.obj
文件 5584360 2009-06-12 09:47 Clock\Debug\Clock.pch
文件 500736 2009-06-12 10:18 Clock\Debug\Clock.pdb
文件 7324 2009-06-12 10:18 Clock\Debug\Clock.res
文件 14606 2009-06-12 09:47 Clock\Debug\ClockDoc.obj
文件 36810 2009-06-12 10:18 Clock\Debug\ClockView.obj
............此处省略14个文件信息
相关资源
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
- 联想启天M4350 BIOS升级文件
评论
共有 条评论