www.pudn.com > TCPIPAnalyse1.rar > OpenFileDlg.cpp


// OpenFileDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "irisanalyse.h" 
#include "OpenFileDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// COpenFileDlg dialog 
 
 
COpenFileDlg::COpenFileDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(COpenFileDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(COpenFileDlg) 
		// NOTE: the ClassWizard will add member initialization here 
	//}}AFX_DATA_INIT 
	m_strName = _TEXT(""); 
} 
 
 
void COpenFileDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(COpenFileDlg) 
		// NOTE: the ClassWizard will add DDX and DDV calls here 
	DDX_Text(pDX,IDC_OPENFILE,m_strName); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(COpenFileDlg, CDialog) 
	//{{AFX_MSG_MAP(COpenFileDlg) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// COpenFileDlg message handlers