1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #if !defined(AFX_BOOKINGPAGE22_H__96C00C80_2110_4F19_B655_81896FE6F553__INCLUDED_)
- #define AFX_BOOKINGPAGE22_H__96C00C80_2110_4F19_B655_81896FE6F553__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // BookingPage22.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // BookingPage22 dialog
- class BookingPage22 : public CDialog
- {
- // Construction
- public:
- BOOL m_bInit;
- void CompareClient();
- CArray<CStringArray, CStringArray>m_areaarray;
- CArray<int, int>m_oldclientarray;
- CRect m_rc;
- void NewDan();
- BOOL CheckOK();
- BookingPage22(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(BookingPage22)
- enum { IDD = IDD_DLGBookingPage22 };
- CComboBox m_combozodiac;
- CComboBox m_combosex;
- CComboBox m_comboarea;
- CDateEdit m_datectrl1;
- CString m_addr1;
- CString m_name1;
- CString m_name2;
- CString m_phone1;
- CString m_phone2;
- CString m_zodiac;
- CString m_sex;
- CString m_qq1;
- CString m_birthday1;
- CString m_area;
- BOOL m_check1;
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- void SetPasswordChar()
- {
- CEdit* pEdit1 = (CEdit*)GetDlgItem(IDC_EDITphone);
- CEdit* pEdit2 = (CEdit*)GetDlgItem(IDC_EDITphone2);
- CEdit* pEdit3 = (CEdit*)GetDlgItem(IDC_EDITqq);
- CEdit* pEdit4 = (CEdit*)GetDlgItem(IDC_EDITaddr);
- pEdit1->SetPasswordChar(_T('*'));
- pEdit2->SetPasswordChar(_T('*'));
- pEdit3->SetPasswordChar(_T('*'));
- pEdit4->SetPasswordChar(_T('*'));
- }
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(BookingPage22)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(BookingPage22)
- virtual void OnOK();
- virtual void OnCancel();
- virtual BOOL OnInitDialog();
- afx_msg void OnButton2();
- afx_msg void OnChangeEDITname();
- afx_msg void OnChangeEDITname2();
- afx_msg void OnChangeEDITphone();
- afx_msg void OnChangeEDITphone2();
-
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- static BOOL EnumChildProcBPage2(HWND hwnd,LPARAM lParam);
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_BOOKINGPAGE22_H__96C00C80_2110_4F19_B655_81896FE6F553__INCLUDED_)
|