资源简介
这是我上学期做的课设,用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\databa
文件 1048576 2010-01-18 18:59 C++小型图书馆管理系统2\C++小型图书馆管理系统2\databa
文件 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个文件信息
相关资源
- 高级语言C++程序设计实验指导
- 用C++实现的一个学生信息管理系统
- VC++6.0 双人五子棋游戏
- Borland C/C++ 3.1精简版
- 经典的图书管理系统c++源代码
- Boost Graph Library:The User Guide and Referen
- BT协议实现c++
- VC6.0中缺少VC98\\\\CRT\\\\SRC文件夹的--
- 学生成绩管理系统C++源码
- VC++运用OpenSSL实现对文件加密
- MFC_跑酷游戏小Demo
- 三维重建VC++
- 用C++实现的聊天程序
- VC++ 对话框 滚轮 计算器
- C++语言释难解惑
- 基于UDP的简单可视化界面聊天程序c
- MFC bluetooth
- OReilly C++ Cookbook
- c++和SqlServer做的图书管理系统
- VC++ AES加密算法实现与范例的源代码
- 23种设计模式(C++版)
- SNL语言编译器C++实现
- MFC课程设计 学生信息管理系统C++
- C语言变量类型详解史上最全
- 基于VC++的人脸定位系统
- ATM完全功能很全,C++写的
- C++ Primer 3rd 英文版
- C++ 面向对象程序设计(第七版) 周靖
- 网络拓扑发现算法c++源码
- 深度探索C++对象模型.pdf +清晰+完整
评论
共有 条评论