• 大小: 5.63MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-16
  • 语言: C/C++
  • 标签: MFC  

资源简介

能实现登陆界面管理,重新登陆,员工添加,员工密码设置,员工权限设置

资源截图

代码片段和文件信息

// InfoDlg.cpp : implementation file
//

#include “stdafx.h“
#include “QQ.h“
#include “InfoDlg.h“
#include “InputDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CInfoDlg dialog


CInfoDlg::CInfoDlg(CWnd* pParent /*=NULL*/)
: CDialog(CInfoDlg::IDD pParent)
{
//{{AFX_DATA_INIT(CInfoDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}


void CInfoDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CInfoDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CInfoDlg CDialog)
//{{AFX_MSG_MAP(CInfoDlg)
ON_BN_CLICKED(IDC_ADD OnAdd)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CInfoDlg message handlers

void CInfoDlg::OnOK() 
{

// CDialog::OnOK();
}

BOOL CInfoDlg::OnInitDialog() 
{
CDialog::OnInitDialog();
m_list.SubclassDlgItem(IDC_LISTthis);
CListCtrl *pList = (CListCtrl *)GetDlgItem(IDC_LIST);
    pList ->InsertColumn(0“工号“0100);
pList ->InsertColumn(1“姓名“0100); 
pList ->InsertColumn(2“部门“0100); 
pList ->InsertColumn(3“工资“0100); 
pList ->InsertColumn(4“出生年月日“0150); 
return TRUE;
}

void CInfoDlg::OnAdd() 
{
   CInputDlg dlg;
   dlg.m_pInfoDlg = this;
   dlg.DoModal();

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-03-20 15:40  QQ\
     目录           0  2017-03-04 11:48  QQ\Debug\
     文件       15200  2017-02-10 14:34  QQ\Debug\InfoDlg.obj
     文件           0  2017-02-10 14:34  QQ\Debug\InfoDlg.sbr
     文件       15871  2017-02-10 14:34  QQ\Debug\InputDlg.obj
     文件           0  2017-02-10 14:34  QQ\Debug\InputDlg.sbr
     文件       16461  2017-02-10 14:34  QQ\Debug\LoginDlg.obj
     文件           0  2017-02-10 14:34  QQ\Debug\LoginDlg.sbr
     文件       25062  2017-02-10 14:34  QQ\Debug\PriorDlg.obj
     文件           0  2017-02-10 14:34  QQ\Debug\PriorDlg.sbr
     文件     3113984  2017-02-10 14:34  QQ\Debug\QQ.bsc
     文件     1564715  2017-02-10 14:34  QQ\Debug\QQ.exe
     文件     1929764  2017-02-10 14:34  QQ\Debug\QQ.ilk
     文件       12658  2017-02-10 14:34  QQ\Debug\QQ.obj
     文件     6846652  2017-02-10 14:34  QQ\Debug\QQ.pch
     文件     2728960  2017-02-10 14:34  QQ\Debug\QQ.pdb
     文件        9804  2017-02-10 14:34  QQ\Debug\QQ.res
     文件           0  2017-02-10 14:34  QQ\Debug\QQ.sbr
     文件       23967  2017-02-10 14:34  QQ\Debug\QQDlg.obj
     文件           0  2017-02-10 14:34  QQ\Debug\QQDlg.sbr
     文件      105383  2017-02-10 14:34  QQ\Debug\StdAfx.obj
     文件     1362877  2017-02-10 14:34  QQ\Debug\StdAfx.sbr
     文件         132  2017-03-26 19:14  QQ\Debug\user.dat
     文件      205824  2017-02-10 14:34  QQ\Debug\vc60.idb
     文件      364544  2017-02-10 14:34  QQ\Debug\vc60.pdb
     文件        1534  2017-02-10 13:53  QQ\InfoDlg.cpp
     文件        1273  2017-02-10 12:51  QQ\InfoDlg.h
     文件        2810  2017-02-10 18:24  QQ\InputDlg.cpp
     文件        1297  2017-02-10 14:15  QQ\InputDlg.h
     文件        2030  2017-03-11 16:24  QQ\LoginDlg.cpp
     文件        1272  2017-02-08 20:39  QQ\LoginDlg.h
............此处省略22个文件信息

评论

共有 条评论