TabHtmlPage.cpp
上传用户:hjw22cn
上传日期:2007-01-11
资源大小:192k
文件大小:1k
源码类别:

Tab控件

开发平台:

Visual C++

  1. // TabHtmlPage.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "formview.h"
  5. #include "TabHtmlPage.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CTabHtmlPage dialog
  13. CTabHtmlPage::CTabHtmlPage(CWnd* pParent /*=NULL*/)
  14. : CDialog(CTabHtmlPage::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CTabHtmlPage)
  17. //}}AFX_DATA_INIT
  18. }
  19. void CTabHtmlPage::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(CTabHtmlPage)
  23. DDX_Control(pDX, IDC_EXPLORER1, m_ctrlHtml);
  24. //}}AFX_DATA_MAP
  25. }
  26. BEGIN_MESSAGE_MAP(CTabHtmlPage, CDialog)
  27. //{{AFX_MSG_MAP(CTabHtmlPage)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CTabHtmlPage message handlers
  32. BOOL CTabHtmlPage::OnInitDialog() 
  33. {
  34. CDialog::OnInitDialog();
  35. COleVariant noArg;
  36. m_ctrlHtml.Navigate("http://msdn.microsoft.com/", &noArg, &noArg, &noArg, &noArg);
  37. return TRUE;  // return TRUE unless you set the focus to a control
  38.               // EXCEPTION: OCX Property Pages should return FALSE
  39. }