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

📄 pgpadminxppg.cpp

📁 PGP8.0源码 请认真阅读您的文件包然后写出其具体功能
💻 CPP
字号:
/*____________________________________________________________________________
	Copyright (C) 2002 PGP Corporation
	All rights reserved.

	$Id: PGPadminXPpg.cpp,v 1.2 2002/08/06 20:09:15 dallen Exp $
____________________________________________________________________________*/
// PGPadminXPpg.cpp : Implementation of the CPGPadminXPropPage property page class.

#include "stdafx.h"
#include "PGPadminX.h"
#include "PGPadminXPpg.h"

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


IMPLEMENT_DYNCREATE(CPGPadminXPropPage, COlePropertyPage)


/////////////////////////////////////////////////////////////////////////////
// Message map

BEGIN_MESSAGE_MAP(CPGPadminXPropPage, COlePropertyPage)
	//{{AFX_MSG_MAP(CPGPadminXPropPage)
	// NOTE - ClassWizard will add and remove message map entries
	//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/////////////////////////////////////////////////////////////////////////////
// Initialize class factory and guid

IMPLEMENT_OLECREATE_EX(CPGPadminXPropPage, "PGPADMINX.PGPadminXPropPage.1",
	0x6917c1f7, 0x755a, 0x11d5, 0xae, 0x28, 0, 0x1, 0x2, 0x34, 0x51, 0x8f)


/////////////////////////////////////////////////////////////////////////////
// CPGPadminXPropPage::CPGPadminXPropPageFactory::UpdateRegistry -
// Adds or removes system registry entries for CPGPadminXPropPage

BOOL CPGPadminXPropPage::CPGPadminXPropPageFactory::UpdateRegistry(BOOL bRegister)
{
	if (bRegister)
		return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
			m_clsid, IDS_PGPADMINX_PPG);
	else
		return AfxOleUnregisterClass(m_clsid, NULL);
}


/////////////////////////////////////////////////////////////////////////////
// CPGPadminXPropPage::CPGPadminXPropPage - Constructor

CPGPadminXPropPage::CPGPadminXPropPage() :
	COlePropertyPage(IDD, IDS_PGPADMINX_PPG_CAPTION)
{
	//{{AFX_DATA_INIT(CPGPadminXPropPage)
	// NOTE: ClassWizard will add member initialization here
	//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_DATA_INIT
}


/////////////////////////////////////////////////////////////////////////////
// CPGPadminXPropPage::DoDataExchange - Moves data between page and properties

void CPGPadminXPropPage::DoDataExchange(CDataExchange* pDX)
{
	//{{AFX_DATA_MAP(CPGPadminXPropPage)
	// NOTE: ClassWizard will add DDP, DDX, and DDV calls here
	//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_DATA_MAP
	DDP_PostProcessing(pDX);
}


/////////////////////////////////////////////////////////////////////////////
// CPGPadminXPropPage message handlers

⌨️ 快捷键说明

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