12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if !defined(AFX_Client2Dlg_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_)
- #define AFX_Client2Dlg_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // Client2Dlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // Client2Dlg dialog
- class Client2Dlg : public CDialog
- {
- int m_nSecond;
- BOOL m_bCanClose;
- // Construction
- public:
- Client2Dlg(CWnd* pParent = NULL); // standard constructor
- int m_linepos;
- // Dialog Data
- //{{AFX_DATA(Client2Dlg)
- enum {
- IDD = IDD_DLGClient2
- };
- CString m_phone;
- CString m_name;
- CString m_sex;
- CString m_addr;
- CString m_qq;
- CString m_bz;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(Client2Dlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(Client2Dlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- virtual void OnOK();
- virtual void OnCancel();
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg void OnButton1();
- //}}AFX_MSG
- afx_msg LRESULT OnCloseWin(WPARAM wParam, LPARAM lParam);
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_Client2Dlg_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_)
|