飞机票定票和退票系统Dlg.h
上传用户:lilang
上传日期:2013-03-16
资源大小:35k
文件大小:2k
源码类别:

交通/航空行业

开发平台:

Visual C++

  1. // 飞机票定票和退票系统Dlg.h : header file
  2. //
  3. #if !defined(AFX_DLG_H__DF14ABEE_8B31_4FAB_99B8_665340238159__INCLUDED_)
  4. #define AFX_DLG_H__DF14ABEE_8B31_4FAB_99B8_665340238159__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMyDlg dialog
  10. class CMyDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CMyDlg(CWnd* pParent = NULL); // standard constructor
  15. struct passenger
  16. {
  17. char name[20];
  18. int sex;
  19. char destination[20];
  20. char fly[20];
  21. int ticketnum;
  22. }p[100];
  23. int totle[3];
  24. int remain[3];
  25. int now[3];
  26. int fly;
  27. int totlep;
  28. int destinenum;
  29. // Dialog Data
  30. //{{AFX_DATA(CMyDlg)
  31. enum { IDD = IDD_MY_DIALOG };
  32. CComboBox m_fly;
  33. CEdit m_information;
  34. CEdit m_p_information;
  35. CEdit m_name;
  36. CEdit m_destination;
  37. CString m_remain;
  38. CString m_passenger;
  39. CString m_pt;
  40. CString m_destinenum;
  41. int m_ticketnum;
  42. //}}AFX_DATA
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CMyDlg)
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. protected:
  50. HICON m_hIcon;
  51. // Generated message map functions
  52. //{{AFX_MSG(CMyDlg)
  53. virtual BOOL OnInitDialog();
  54. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  55. afx_msg void OnPaint();
  56. afx_msg HCURSOR OnQueryDragIcon();
  57. virtual void OnCancel();
  58. afx_msg void OnButtonOk();
  59. afx_msg void OnButtonCancel();
  60. afx_msg void OnSelchangeCOMBOfly();
  61. afx_msg void OnChangeEDITticketnum();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. };
  65. //{{AFX_INSERT_LOCATION}}
  66. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  67. #endif // !defined(AFX_DLG_H__DF14ABEE_8B31_4FAB_99B8_665340238159__INCLUDED_)