Click here to Skip to main content
15,896,118 members
Articles / Desktop Programming / MFC

Enumdesk Clones

Rate me:
Please Sign up or sign in to vote.
4.90/5 (19 votes)
9 May 20036 min read 139.7K   3.9K   41  
Eunumdesk Clones
/************************************************
   THIS CODE AND INFORMATION IS PROVIDED 'AS IS' 
   WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO
   THE IMPLIED WARRANTIES OF MERCHANTABILITY 
   AND/OR FITNESS FOR A PARTICULAR PURPOSE.
   Author: Barretto VN  7/2002
*************************************************/


// HTMLView.cpp : implementation file
//

#include "stdafx.h"
#include "Shell.h"
#include "HTMLView.h"

#include "ShellDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CHTMLView

IMPLEMENT_DYNCREATE(CHTMLView, CHtmlView)

CHTMLView::CHTMLView()
{
	//{{AFX_DATA_INIT(CHTMLView)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CHTMLView::~CHTMLView()
{
}

void CHTMLView::DoDataExchange(CDataExchange* pDX)
{
	CHtmlView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CHTMLView)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CHTMLView, CHtmlView)
	//{{AFX_MSG_MAP(CHTMLView)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHTMLView diagnostics

#ifdef _DEBUG
void CHTMLView::AssertValid() const
{
	CHtmlView::AssertValid();
}

void CHTMLView::Dump(CDumpContext& dc) const
{
	CHtmlView::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CHTMLView message handlers

void CHTMLView::OnInitialUpdate() 
{
	CShellDoc* pDoc = (CShellDoc*)GetDocument();
	pDoc->m_HTMLView = this;
}

void CHTMLView::ShowIt(LPITEMIDLIST pidl)
{
	Navigate2(pidl);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
India India
Nothing to boast about

Comments and Discussions