📄 ~tmxjepg.~cpp
字号:
// TmXJEpg.cpp : implementation file
//
#include "stdafx.h"
#include "TmEpg.h"
#include "TmXJEpg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// TmXJEpg
IMPLEMENT_DYNCREATE(TmXJEpg, CCmdTarget)
TmXJEpg::TmXJEpg()
{
// EnableAutomation();
// To keep the application running as long as an OLE automation
// object is active, the constructor calls AfxOleLockApp.
AfxOleLockApp();
}
TmXJEpg::~TmXJEpg()
{
// To terminate the application when all objects created with
// with OLE automation, the destructor calls AfxOleUnlockApp.
AfxOleUnlockApp();
}
void TmXJEpg::OnFinalRelease()
{
// When the last reference for an automation object is released
// OnFinalRelease is called. The base class will automatically
// deletes the object. Add additional cleanup required for your
// object before calling the base class.
CCmdTarget::OnFinalRelease();
}
BEGIN_MESSAGE_MAP(TmXJEpg, CCmdTarget)
//{{AFX_MSG_MAP(TmXJEpg)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// Note: we add support for IID_ITmXJEpg to support typesafe binding
// from VBA. This IID must match the GUID that is attached to the
// dispinterface in the .ODL file.
// {CE7295B1-9049-42EA-A548-97F8F4C5417B}
BEGIN_INTERFACE_MAP(TmXJEpg, CCmdTarget)
END_INTERFACE_MAP()
// {3F541152-EC67-46B5-9FE0-7348D783CDF7}
IMPLEMENT_OLECREATE(TmXJEpg, "TmEpg.TmXJEpg", 0x3f541152, 0xec67, 0x46b5, 0x9f, 0xe0, 0x73, 0x48, 0xd7, 0x83, 0xcd, 0xf7)
/////////////////////////////////////////////////////////////////////////////
// TmXJEpg message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -