www.pudn.com > 基于TWAIN接口程序.zip > InputDlg.cpp


// InputDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "twaintest.h" 
#include "InputDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CInputDlg dialog 
 
 
CInputDlg::CInputDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(CInputDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CInputDlg) 
	m_EditStr = _T(""); 
	//}}AFX_DATA_INIT 
} 
 
 
void CInputDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CInputDlg) 
	DDX_Text(pDX, IDC_EDIT1, m_EditStr); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CInputDlg, CDialog) 
	//{{AFX_MSG_MAP(CInputDlg) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CInputDlg message handlers