123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // DataInputDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "IDE.h"
- #include "DataInputDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDataInputDlg dialog
- CDataInputDlg::CDataInputDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CDataInputDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CDataInputDlg)
- m_strData = _T("");
- m_strVarName = _T("");
- //}}AFX_DATA_INIT
- }
- void CDataInputDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CDataInputDlg)
- DDX_Text(pDX, IDC_DATA, m_strData);
- DDX_Text(pDX, IDC_VARNAME, m_strVarName);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CDataInputDlg, CDialog)
- //{{AFX_MSG_MAP(CDataInputDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDataInputDlg message handlers
|