• 大小: 351.52 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-09-20
  • 语言: 其他
  • 标签: vc  sql  数据库  

资源简介

运行程序,选择左侧列表中的图标,单击加班按钮,进行加班登记,如果因临时有事而取消加班则双击右侧的加班列表。

资源截图

代码片段和文件信息

// 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个文件信息

评论

共有 条评论