⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 view.cpp

📁 用VC++6.0开发的人事信息系统
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -