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 // _MSC_VER > 1000
- // Booking.h : header f ile
- //
- /////////////////////////////////////////////////////////////////////////////
- // Booking dialog
- #include "DateEdit.h"
- #include "resource.h"
- class Booking : public CDialog
- {
- int m_pos;
- CArray<CStringArray, CStringArray>m_Clientarray;
- CStringArray m_array;
- // Construction
- public:
- Booking(CWnd* pParent = NULL); // standard constructor
- CString m_id;
- // Dialog Data
- //{{AFX_DATA(Booking)
- 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;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(Booking)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(Booking)
- virtual void OnOK();
- virtual BOOL OnInitDialog();
- afx_msg void OnSelchangeCombo1();
- afx_msg void OnClose();
- virtual void OnCancel();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_BOOKING_H__B0E592D3_7AD9_4C4C_BFBD_C144E380DCC4__INCLUDED_)
|