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

📄 webppg.cpp

📁 web应用控件,主要是实现的web开发中文件的加密和解密.该控件b/s架构的应用系统 中有比较好的用途
💻 CPP
字号:
// WebPpg.cpp : Implementation of the CWebPropPage property page class.

#include "stdafx.h"
#include "Web.h"
#include "WebPpg.h"

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


IMPLEMENT_DYNCREATE(CWebPropPage, COlePropertyPage)


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

BEGIN_MESSAGE_MAP(CWebPropPage, COlePropertyPage)
	//{{AFX_MSG_MAP(CWebPropPage)
	// 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(CWebPropPage, "WEB.WebPropPage.1",
	0x35e8e5ad, 0xeabd, 0x446b, 0x86, 0x3a, 0x74, 0x19, 0xd7, 0xec, 0xe4, 0x37)


/////////////////////////////////////////////////////////////////////////////
// CWebPropPage::CWebPropPageFactory::UpdateRegistry -
// Adds or removes system registry entries for CWebPropPage

BOOL CWebPropPage::CWebPropPageFactory::UpdateRegistry(BOOL bRegister)
{
	if (bRegister)
		return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
			m_clsid, IDS_WEB_PPG);
	else
		return AfxOleUnregisterClass(m_clsid, NULL);
}


/////////////////////////////////////////////////////////////////////////////
// CWebPropPage::CWebPropPage - Constructor

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


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

void CWebPropPage::DoDataExchange(CDataExchange* pDX)
{
	//{{AFX_DATA_MAP(CWebPropPage)
	// 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);
}


/////////////////////////////////////////////////////////////////////////////
// CWebPropPage message handlers

⌨️ 快捷键说明

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