资源简介
运行程序,选择左侧列表中的图标,单击加班按钮,进行加班登记,如果因临时有事而取消加班则双击右侧的加班列表。
代码片段和文件信息
// Overtime.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Overtime.h“
#include “OvertimeDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COvertimeApp
BEGIN_MESSAGE_MAP(COvertimeApp CWinApp)
//{{AFX_MSG_MAP(COvertimeApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// COvertimeApp construction
COvertimeApp::COvertimeApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only COvertimeApp object
COvertimeApp theApp;
/////////////////////////////////////////////////////////////////////////////
// COvertimeApp initialization
BOOL COvertimeApp::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
COvertimeDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 814380 2007-05-08 08:52 Overtime\Overtime.aps
文件 1400 2007-05-08 08:52 Overtime\Overtime.clw
文件 2093 2007-05-08 08:52 Overtime\Overtime.cpp
文件 7281 2007-05-08 08:52 Overtime\Overtime.dsp
文件 539 2007-05-08 08:52 Overtime\Overtime.dsw
文件 1346 2007-05-08 08:52 Overtime\Overtime.h
文件 82944 2007-05-08 08:52 Overtime\Overtime.ncb
文件 1798 2007-05-08 08:52 Overtime\Overtime.plg
文件 7525 2007-05-08 08:52 Overtime\Overtime.rc
文件 11008 2007-05-08 08:52 Overtime\OvertimeDlg.cpp
文件 1737 2007-05-08 08:52 Overtime\OvertimeDlg.h
文件 3615 2007-05-08 08:52 Overtime\ReadMe.txt
文件 210 2007-05-08 08:52 Overtime\StdAfx.cpp
文件 1054 2007-05-08 08:52 Overtime\StdAfx.h
文件 203 2007-05-08 08:52 Overtime\employee.ini
文件 10 2007-05-08 08:52 Overtime\overtime.ini
文件 3077 2007-05-08 08:52 Overtime\resource.h
文件 5694 2007-05-08 08:52 Overtime\res\1.ico
文件 5694 2007-05-08 08:52 Overtime\res\10.ico
文件 5694 2007-05-08 08:52 Overtime\res\11.ico
文件 5694 2007-05-08 08:52 Overtime\res\12.ico
文件 5694 2007-05-08 08:52 Overtime\res\13.ico
文件 5694 2007-05-08 08:52 Overtime\res\14.ico
文件 5694 2007-05-08 08:52 Overtime\res\15.ico
文件 5694 2007-05-08 08:52 Overtime\res\16.ico
文件 5694 2007-05-08 08:52 Overtime\res\17.ico
文件 5694 2007-05-08 08:52 Overtime\res\18.ico
文件 5694 2007-05-08 08:52 Overtime\res\19.ico
文件 5694 2007-05-08 08:52 Overtime\res\2.ico
文件 5694 2007-05-08 08:52 Overtime\res\20.ico
............此处省略20个文件信息
相关资源
- VC 6 Modbus RTU测试程序
- VC 6.0 MFC做画图软件
- ping 程序 C语言
- 数据库课程设计报告(关于房地产销
- 基于MVC模式的校园BBS系统的设计与实
- MVC模式编写的音乐网站
- 哲学家进餐问题 算法 vc源代码 测试通
- VC数字图像处理课程设计
- 关于角点检测算法HarrisForstner经典算子
- 操作系统实验综合设计【附代码】
- VC 编程实现活动主机扫描源代码
- MVC模式实现的计算器
- 在线考试系统VC (MFC)
- IP数据包流量监控VC 源码
- VC 6.0 工程更名器
- CJLibrary Version 6.09
- vc编写的通达信插件选股
- 数据库课程设计(改改直接交)
-
将数据库的表生成xm
l文件 - 简单的一个小程序(是送给心仪的女
- VC 使用GDI 矢量绘图软件源代码
- 一个可以由SVCHost.exe服务调用的dll模块
- Ajax定时读取数据库(源代码发布)
- VC 实现鼠标画矩形和绘制直线
- vc 编写的基于TCP协议的客户/服务器
- 类VC工作台(我论坛帖子上的一个附件
- 浪潮数据库结构
- 数据库查询优化算法
- PB做的俄罗斯方块
- 典当综合业务管理系统(完整版)
评论
共有 条评论