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

📄 litepage.cpp

📁 outlook 插件 在outlook 中添加弹出试菜单
💻 CPP
字号:

////////////////////////////////////////////////////////////////////////////
//	Copyright : Amit Dey 2002
//
//	Email :amitdey@joymail.com
//
//	This code may be used in compiled form in any way you desire. This
//	file may be redistributed unmodified by any means PROVIDING it is 
//	not sold for profit without the authors written consent, and 
//	providing that this notice and the authors name is included.
//
//	This file is provided 'as is' with no expressed or implied warranty.
//	The author accepts no liability if it causes any damage to your computer.
//
//	Do expect bugs.
//	Please let me know of any bugs/mods/improvements.
//	and I will try to fix/incorporate them into this file.
//	Enjoy!
//
//	Description : Outlook2K Addin 
////////////////////////////////////////////////////////////////////////////

// LitePage.cpp : Implementation of CLitePage

#include "stdafx.h"
#include "OutlookAddin.h"
#include "LitePage.h"

/////////////////////////////////////////////////////////////////////////////
// CLitePage

STDMETHODIMP CLitePage::SetClientSite(IOleClientSite *pSite)
{
	ATLTRACE("SetClientSite");
	if(pSite!=NULL)
	IOleObjectImpl<CLitePage>::SetClientSite(pSite);
	
	return S_OK;

	
}
STDMETHODIMP CLitePage::GetControlInfo(LPCONTROLINFO pCI)
{
	return S_OK;	
}

⌨️ 快捷键说明

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