RoomInfoLookup.h
上传用户:sunh8215
上传日期:2010-02-13
资源大小:1616k
文件大小:2k
源码类别:

酒店行业

开发平台:

Visual C++

  1. #if !defined(AFX_ROOMINFOLOOKUP_H__4C78B7F5_D972_4FC2_85A3_ECF7999FF940__INCLUDED_)
  2. #define AFX_ROOMINFOLOOKUP_H__4C78B7F5_D972_4FC2_85A3_ECF7999FF940__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // RoomInfoLookup.h : header file
  7. //
  8. #include"infoset.h"
  9. #include ".\autocomplete\AutoCompl.h"//包含自动完成功能的头文件
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CRoomInfoLookup dialog
  12. class CRoomInfoSet;
  13. class CRoomInfoLookup : public CDialog
  14. {
  15. // Construction
  16. public:
  17. void InitDate();
  18. CRoomInfoLookup(CWnd* pParent = NULL);   // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CRoomInfoLookup)
  21. enum { IDD = IDD_ROOMINFO_LOOKUP };
  22. CComboBox m_InfoLookup_RoomCode;
  23. //}}AFX_DATA
  24.     CRoomInfoSet m_RoomInfoSet;
  25.     CString RoomCode;
  26. CString RoomType;
  27. int Floor;
  28. CString Phone;
  29. CString RoomStatus;
  30. BOOL PriceType;
  31. float Price;
  32. bool    bSuccess;//操作是否成功
  33. CAutoComplete m_acCombo; // hook for combo box
  34. static CString STRINGS[100];//
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CRoomInfoLookup)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. // Generated message map functions
  44. //{{AFX_MSG(CRoomInfoLookup)
  45. virtual BOOL OnInitDialog();
  46. virtual void OnOK();
  47. virtual void OnCancel();
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. };
  51. //{{AFX_INSERT_LOCATION}}
  52. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  53. #endif // !defined(AFX_ROOMINFOLOOKUP_H__4C78B7F5_D972_4FC2_85A3_ECF7999FF940__INCLUDED_)