1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #if !defined(AFX_BOOKING_H__B0E592D3_7AD9_4C4C_BFBD_C144E380DCC4__INCLUDED_)
- #define AFX_BOOKING_H__B0E592D3_7AD9_4C4C_BFBD_C144E380DCC4__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #include "DateEdit.h"
- #include "resource.h"
- class Booking : public CDialog
- {
- int m_pos;
- CArray<CStringArray, CStringArray>m_Clientarray;
- CStringArray m_array;
-
- public:
- Booking(CWnd* pParent = NULL);
- CString m_id;
-
-
- enum {
- IDD = IDD_DLGBooking
- };
- CDateEdit m_dateedit;
- CComboBox m_combodatetime;
- CComboBox m_combotype;
- CString m_name1;
- CString m_name2;
- CString m_date;
- CString m_taketime;
-
-
-
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
-
- protected:
-
-
- virtual void OnOK();
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeCombo1();
- afx_msg void OnClose();
- virtual void OnCancel();
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|