资源简介

这是一个基于vc++的酒店房客预定系统,有完整的软件工程设计规范,是我们本学期的软件工程的项目,需要的拿走哈! 资源包含:程序+文档

资源截图

代码片段和文件信息

// AskstateDialog.cpp : implementation file
//

#include “stdafx.h“
#include “tot.h“
#include “AskstateDialog.h“

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

/////////////////////////////////////////////////////////////////////////////
// CAskstateDialog dialog


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

if(!m_dab.Open(NULLFALSEFALSE“ODBC;DSN=Room“))
 {AfxMessageBox(“不能打开数据库“);}
  
  



}


void CAskstateDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAskstateDialog)
DDX_Control(pDX IDC_LIST1 m_ListCtrl);
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CAskstateDialog CDialog)
//{{AFX_MSG_MAP(CAskstateDialog)
ON_BN_CLICKED(IDC_ASKSTATE OnAskstate)
ON_NOTIFY(LVN_COLUMNCLICK IDC_LIST1 OnColumnclickList1)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAskstateDialog message handlers

void CAskstateDialog::OnAskstate() 
{
// TODO: Add your control notification handler code here
m_pSet.Open();
   m_ListCtrl.SetExtendedstyle(LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES);
    m_ListCtrl.InsertColumn(0_T(“房间号“)LVCFMT_IMAGE|LVCFMT_LEFT);
m_ListCtrl.InsertColumn(1_T(“姓名“));
m_ListCtrl.InsertColumn(2_T(“身份证号“));
m_ListCtrl.InsertColumn(3_T(“性别“));
m_ListCtrl.InsertColumn(4_T(“入住时间“));
m_ListCtrl.InsertColumn(5_T(“住宿天数“));
     m_ListCtrl.InsertColumn(6_T(“费用“));
m_ListCtrl.InsertColumn(7_T(“房间级别“));
     m_ListCtrl.InsertColumn(8_T(“备注“));
m_ListCtrl.InsertColumn(9_T(“总人数“));

int j;
    for(j=0;j<10;j++)
{
  m_ListCtrl.SetColumnWidth(j 90);
}

//显示所有记录
int i=0;
m_pSet.MoveFirst();
    do
 {  
CString s;
        s.Format(“%d“m_pSet.m_roomID);
        m_ListCtrl.InsertItem(is0);
m_ListCtrl.SetItemText(i1m_pSet.m_name);
        
    m_ListCtrl.SetItemText(i2m_pSet.m_personID);
        
        m_ListCtrl.SetItemText(i3m_pSet.m_sex);

         s=m_pSet.m_logtime.Format(“%Y-%B-%d“);
      m_ListCtrl.SetItemText(i4s);

          s.Format(“%d“m_pSet.m_day);
       m_ListCtrl.SetItemText(i5s);
  s.Format(“%d“m_pSet.m_cost);
  m_ListCtrl.SetItemText(i6s);

    
         m_ListCtrl.SetItemText(i7m_pSet.m_class);

m_ListCtrl.SetItemText(i8m_pSet.m_information);
s.Format(“%d“m_pSet.m_people);
m_ListCtrl.SetItemText(i9s);
        i++;

        m_pSet.MoveNext();

}  while(!m_pSet.IsEOF());
        m_pSet.MoveFirst();

m_pSet.Close();

}

void CAskstateDialog::OnColumnclickList1(NMHDR* pNMHDR LRESULT* pResult) 
{
NM_LISTVIEW* pNMListView = (NM_LISTVIEW*)pNMHDR;
// TODO: Add your control notification handler code here
int k=pNMListView->iSubIt

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

     文件     344064  2013-06-13 09:14  酒店客房预定系统(VC++)--课程设计\room.mdb

     文件       5164  2013-06-12 13:27  酒店客房预定系统(VC++)--课程设计\tot\AskstateDialog.cpp

     文件       1463  2013-06-12 13:28  酒店客房预定系统(VC++)--课程设计\tot\AskstateDialog.h

     文件      29812  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\AskstateDialog.obj

     文件      24506  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\FangDialog.obj

     文件      14212  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\FangSet.obj

     文件      24253  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\FindDialog.obj

     文件      32930  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\InroomDialog.obj

     文件      16340  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\LogDialog.obj

     文件      48704  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\MainFrm.obj

     文件      23622  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\OutOpeDialog.obj

     文件      17316  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\RoomSet.obj

     文件     110154  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\StdAfx.obj

     文件      24717  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\SysDialog.obj

     文件    1773660  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\tot.exe

     文件     487360  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\tot.ilk

     文件      23450  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\tot.obj

     文件    5790728  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\tot.pch

     文件     451584  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\tot.pdb

     文件    1345056  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\tot.res

     文件      14890  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\totDoc.obj

     文件      34296  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\totView.obj

     文件     238592  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\vc60.idb

     文件     372736  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\vc60.pdb

     文件      16901  2013-06-12 13:56  酒店客房预定系统(VC++)--课程设计\tot\Debug\WaitDialog.obj

     文件         10  2013-06-12 13:15  酒店客房预定系统(VC++)--课程设计\tot\Debug\建议.txt

     文件       3090  2013-06-12 13:28  酒店客房预定系统(VC++)--课程设计\tot\FangDialog.cpp

     文件       1378  2013-06-12 13:29  酒店客房预定系统(VC++)--课程设计\tot\FangDialog.h

     文件       1338  2013-06-12 13:30  酒店客房预定系统(VC++)--课程设计\tot\FangSet.cpp

     文件       1292  2013-06-12 13:33  酒店客房预定系统(VC++)--课程设计\tot\FangSet.h

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

评论

共有 条评论