• 大小: 3.08MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-04
  • 语言: C/C++
  • 标签: C++  课设  图书管理  

资源简介

这是我上学期做的课设,用c++写的可以运行,适合用作大一大二的学弟学妹们作为课设的参考,它功能齐全,并且可以运行。 它1.调试正确,可读性好,2.测试充分,描述清晰,输出结果清晰3.报告规范 4.设计有创新

资源截图

代码片段和文件信息

// AddUserDlg.cpp : implementation file
//

#include “stdafx.h“
#include “LibDBS.h“
#include “AddUserDlg.h“
#include “UserSet.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAddUserDlg dialog


CAddUserDlg::CAddUserDlg(CWnd* pParent /*=NULL*/)
: CDialog(CAddUserDlg::IDD pParent)
{
//{{AFX_DATA_INIT(CAddUserDlg)
m_strUser = _T(““);
m_strPassword = _T(““);
//}}AFX_DATA_INIT
}


void CAddUserDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAddUserDlg)
DDX_Text(pDX IDC_EDIT_USER m_strUser);
DDX_Text(pDX IDC_EDIT_Password m_strPassword);
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CAddUserDlg CDialog)
//{{AFX_MSG_MAP(CAddUserDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAddUserDlg message handlers

void CAddUserDlg::OnOK() 
{
// TODO: Add extra validation here

// CDialog::OnOK();
this->UpdateData(TRUE);
if(m_strUser.Compare(““)==0||m_strPassword.Compare(““)==0)
{
MessageBox(“请正确填写所需数据!““增加用户“);
return;
}

if(!m_database.IsOpen())
{
if(!m_database.Open(_T(“Library“)))
{
MessageBox(“数据库打开出错!““图书信息!“);
OnOK();
return ;
}
}
CString strSQL;
long num;
CUserSet *m_pset=new CUserSet(&m_database);

strSQL.Format(“select * from Admin_Info“);
m_pset->Open(AFX_DB_USE_DEFAULT_TYPEstrSQL);
num = m_pset->GetRecordCount();

m_pset->AddNew();
m_pset->SetFieldNull(&(m_pset->m_User_Name)FALSE);
m_pset->m_User_Name=m_strUser;

m_pset->SetFieldNull(&(m_pset->m_Password)FALSE);
m_pset->m_Password=m_strPassword;

m_pset->SetFieldNull(&(m_pset->m_WorkID)FALSE);
m_pset->m_WorkID=num+2;

m_pset->Update();
m_pset->Requery();

m_pset->Close();
m_database.Close();
MessageBox(“添加帐号成功!““添加帐号“);

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    1179648  2010-01-18 18:59  C++小型图书馆管理系统2\C++小型图书馆管理系统2\database\LibDBS_Data.MDF

     文件    1048576  2010-01-18 18:59  C++小型图书馆管理系统2\C++小型图书馆管理系统2\database\LibDBS_Log.LDF

     文件       2038  2010-01-08 15:49  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\AddUserDlg.cpp

     文件       1245  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\AddUserDlg.h

     文件       2408  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BookInfoDlg.cpp

     文件       1357  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BookInfoDlg.h

     文件       5583  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BookLostDlg.cpp

     文件       1391  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BookLostDlg.h

     文件       1645  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BookSet.cpp

     文件       1395  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BookSet.h

     文件       9889  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BorrowDlg.cpp

     文件       1488  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BorrowDlg.h

     文件       1404  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BorrowSet.cpp

     文件       1329  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\BorrowSet.h

     文件       3290  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\ChangePasswordDlg.cpp

     文件       1454  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\ChangePasswordDlg.h

     文件       5824  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\CheckBooksDlg.cpp

     文件       1385  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\CheckBooksDlg.h

     文件       4572  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\CheckBorrowDlg.cpp

     文件       1422  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\CheckBorrowDlg.h

     文件       5832  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\CheckProofDlg.cpp

     文件       1415  2006-05-29 08:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\CheckProofDlg.h

     文件      18677  2010-01-08 15:49  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\AddUserDlg.obj

     文件       5349  2010-01-08 15:51  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\APPMODUL.obj

     文件     401878  2010-01-08 13:18  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\bk2.bmp

     文件      20336  2009-12-27 11:07  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\BookInfoDlg.obj

     文件      33141  2009-12-27 11:07  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\BookLostDlg.obj

     文件      16568  2009-12-27 11:07  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\BookSet.obj

     文件      47719  2009-12-27 11:07  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\BorrowDlg.obj

     文件      14775  2009-12-27 11:07  C++小型图书馆管理系统2\C++小型图书馆管理系统2\LibDBS\Debug\BorrowSet.obj

............此处省略75个文件信息

评论

共有 条评论