www.pudn.com > IE1.rar > DlgURL.cpp
// DlgURL.cpp : implementation file
//
#include "stdafx.h"
#include "htmlclock.h"
#include "DlgURL.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDlgURL dialog
CDlgURL::CDlgURL(CWnd* pParent /*=NULL*/)
: CDialog(CDlgURL::IDD, pParent)
{
//{{AFX_DATA_INIT(CDlgURL)
m_url = _T("");
m_time = 0;
//}}AFX_DATA_INIT
}
void CDlgURL::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDlgURL)
DDX_Text(pDX, IDC_EDIT1, m_url);
DDX_Text(pDX, IDC_EDIT2, m_time);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDlgURL, CDialog)
//{{AFX_MSG_MAP(CDlgURL)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDlgURL message handlers