home *** CD-ROM | disk | FTP | other *** search
- // FuncGuideDlg.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "vcdemo.h"
- #include "FuncGuideDlg.h"
-
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CFuncGuideDlg dialog
-
-
- CFuncGuideDlg::CFuncGuideDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CFuncGuideDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CFuncGuideDlg)
- m_para1 = _T("");
- m_para2 = _T("");
- m_para3 = _T("");
- m_para4 = _T("");
- //}}AFX_DATA_INIT
- }
-
-
- void CFuncGuideDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CFuncGuideDlg)
- DDX_Text(pDX, IDC_EDIT1, m_para1);
- DDX_Text(pDX, IDC_EDIT2, m_para2);
- DDX_Text(pDX, IDC_EDIT3, m_para3);
- DDX_Text(pDX, IDC_EDIT4, m_para4);
- //}}AFX_DATA_MAP
- }
-
-
- BEGIN_MESSAGE_MAP(CFuncGuideDlg, CDialog)
- //{{AFX_MSG_MAP(CFuncGuideDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CFuncGuideDlg message handlers
-