UrlDlg.cpp
上传用户:huahan
上传日期:2007-01-04
资源大小:59k
文件大小:1k
源码类别:

浏览器

开发平台:

Visual C++

  1. // UrlDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyBrowser.h"
  5. #include "UrlDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // UrlDlg dialog
  13. UrlDlg::UrlDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(UrlDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(UrlDlg)
  17. m_Edit = _T("");
  18. //}}AFX_DATA_INIT
  19. }
  20. void UrlDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(UrlDlg)
  24. DDX_Text(pDX, IDC_EDIT1, m_Edit);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(UrlDlg, CDialog)
  28. //{{AFX_MSG_MAP(UrlDlg)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // UrlDlg message handlers
  33. BOOL UrlDlg::OnInitDialog() 
  34. {
  35. CDialog::OnInitDialog();
  36. // TODO: Add extra initialization here
  37. GetDlgItem( IDC_EDIT1 )->SetFocus();
  38. return FALSE;  // return TRUE unless you set the focus to a control
  39.               // EXCEPTION: OCX Property Pages should return FALSE
  40. }