view.cpp

来自「用VC++6.0开发的人事信息系统」· C++ 代码 · 共 56 行

CPP
56
字号
// view.cpp : implementation file
//

#include "stdafx.h"
#include "test.h"
#include "view.h"

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

/////////////////////////////////////////////////////////////////////////////
// view dialog


view::view(CWnd* pParent /*=NULL*/)
	: CDialog(view::IDD, pParent)
{
	//{{AFX_DATA_INIT(view)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
	filename="";
}


void view::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(view)
	DDX_Control(pDX, IDC_EXPLORER1, m_nWeb1);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(view, CDialog)
	//{{AFX_MSG_MAP(view)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// view message handlers

BOOL view::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	COleVariant vt(filename);
	VARIANT bt;
	m_nWeb1.Navigate2(vt,&bt,&bt,&bt,&bt);
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?