12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if !defined(AFX_NOTFINDDLG_H__FC5BFB0C_8509_433E_974A_9FA1A11DFB37__INCLUDED_)
- #define AFX_NOTFINDDLG_H__FC5BFB0C_8509_433E_974A_9FA1A11DFB37__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // NotFindDlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // NotFindDlg dialog
- class NotFindDlg : public CDialog
- {
- CString m_name;
- int m_bSaveToClient;
- BOOL m_bSave;
- BOOL m_bClosed;
- // Construction
- public:
- CString m_frompath;
- void SaveToClient();
- void SaveToUnknown();
- int m_linepos;
- NotFindDlg(CWnd* pParent = NULL); // standard constructor
- CString m_phone;
- // Dialog Data
- //{{AFX_DATA(NotFindDlg)
- enum {
- IDD = IDD_DLGNotFind
- };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(NotFindDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(NotFindDlg)
- 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
- 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_NOTFINDDLG_H__FC5BFB0C_8509_433E_974A_9FA1A11DFB37__INCLUDED_)
|