-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMyHtmlViewForUp.cpp
More file actions
63 lines (42 loc) · 1.01 KB
/
Copy pathCMyHtmlViewForUp.cpp
File metadata and controls
63 lines (42 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// CMyHtmlViewForUp.cpp : implementation file
//
#include "pch.h"
#include "soroMfcExSplit.h"
#include "CMyHtmlViewForUp.h"
// CMyHtmlViewForUp
IMPLEMENT_DYNCREATE(CMyHtmlViewForUp, CHtmlView)
CMyHtmlViewForUp::CMyHtmlViewForUp()
{
}
CMyHtmlViewForUp::~CMyHtmlViewForUp()
{
}
void CMyHtmlViewForUp::DoDataExchange(CDataExchange* pDX)
{
CHtmlView::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CMyHtmlViewForUp, CHtmlView)
END_MESSAGE_MAP()
// CMyHtmlViewForUp diagnostics
#ifdef _DEBUG
void CMyHtmlViewForUp::AssertValid() const
{
CHtmlView::AssertValid();
}
void CMyHtmlViewForUp::Dump(CDumpContext& dc) const
{
CHtmlView::Dump(dc);
}
#endif //_DEBUG
// CMyHtmlViewForUp message handlers
void CMyHtmlViewForUp::OnInitialUpdate()
{
CHtmlView::OnInitialUpdate();
// TODO: Add your specialized code here and/or call the base class
Navigate2(_T("C:\\"), NULL, NULL);
}
void CMyHtmlViewForUp::PostNcDestroy()
{
// TODO: Add your specialized code here and/or call the base class
CHtmlView::PostNcDestroy();
}