资源简介
VC/MFC 使用 日期控件 设置、获取 日期时间信息
代码片段和文件信息
// DatePickerDemo.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DatePickerDemo.h“
#include “DatePickerDemoDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDatePickerDemoApp
BEGIN_MESSAGE_MAP(CDatePickerDemoApp CWinApp)
//{{AFX_MSG_MAP(CDatePickerDemoApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CDatePickerDemoApp construction
CDatePickerDemoApp::CDatePickerDemoApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDatePickerDemoApp object
CDatePickerDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDatePickerDemoApp initialization
BOOL CDatePickerDemoApp::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
CDatePickerDemoDlg 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 2011-07-20 18:01 DatePickerDemo\
文件 1287 2008-04-03 20:35 DatePickerDemo\DatePickerDemo.clw
文件 2175 2008-04-03 19:58 DatePickerDemo\DatePickerDemo.cpp
文件 4303 2008-04-03 19:58 DatePickerDemo\DatePickerDemo.dsp
文件 553 2008-04-03 19:58 DatePickerDemo\DatePickerDemo.dsw
文件 1412 2008-04-03 19:58 DatePickerDemo\DatePickerDemo.h
文件 5587 2008-04-03 20:27 DatePickerDemo\DatePickerDemo.rc
文件 5192 2008-04-03 20:35 DatePickerDemo\DatePickerDemoDlg.cpp
文件 1453 2008-04-03 20:07 DatePickerDemo\DatePickerDemoDlg.h
文件 3723 2008-04-03 19:58 DatePickerDemo\ReadMe.txt
目录 0 2011-07-20 18:01 DatePickerDemo\res\
文件 738 2008-04-03 20:08 DatePickerDemo\Resource.h
文件 1078 2008-04-03 19:58 DatePickerDemo\res\DatePickerDemo.ico
文件 406 2008-04-03 19:58 DatePickerDemo\res\DatePickerDemo.rc2
文件 216 2008-04-03 19:58 DatePickerDemo\StdAfx.cpp
文件 1054 2008-04-03 19:58 DatePickerDemo\StdAfx.h
相关资源
- c++获取cpu使用率包含系统和单进程
- linux下使用socket实现ftp的客户端和服务
- 使用c语言实现图像二值化
- CBCGPGridCtrl对使用
- 使用标准C++库实现的WAV音频文件读写
- Lua源码和Lua在C++的使用
- VC使用CStringArray类创建和使用字符串数
- VC++使用Webbrowser开发浏览器
- 人事管理系统(使用MFC单文档程序,
- 使用C++实现的CYK算法
- MFC程序设计,使用鼠标画图程序,包
- NetCDF C++接口使用说明
- 广工编译原理课程设计 PL0C++改进需用
- 从放弃C语言到使用C刷算法的简明教程
- Sigar 使用详解
- vs使用mfc实现全屏截屏和自定义区域截
- OpenCV 装入一幅彩色图像然后在源图像
- VC++ 使用RSA算法防止非法注册机破解软
- 使用zlib库压缩目录
- C++使用ADO连接Access数据库源代码(修
- AES加密算法C语言实现,有测试代码,
- c++使用vector统计字符串中单词出现的
- c++11互斥库mutex的使用
- 多线程编程之future库使用
- c++函数指针使用demo
- c++11 bind库使用
- VC++高精度媒体定时器的使用_MFC
- 旋转的风车,使用MFC编写
- vc++ 6.0使用dbghelp.dll生成dmp内存转储文
- 使用OpenCV编写一个程序,该程序完成
评论
共有 条评论