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

📄 dlgproxy.cpp

📁 pos机前台销售系统
💻 CPP
字号:
// DlgProxy.cpp : implementation file
//

#include "stdafx.h"
#include "zhh.h"
#include "DlgProxy.h"
#include "zhhDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CZhhDlgAutoProxy

IMPLEMENT_DYNCREATE(CZhhDlgAutoProxy, CCmdTarget)

CZhhDlgAutoProxy::CZhhDlgAutoProxy()
{
	EnableAutomation();
	
	// To keep the application running as long as an automation 
	//	object is active, the constructor calls AfxOleLockApp.
	AfxOleLockApp();

	// Get access to the dialog through the application's
	//  main window pointer.  Set the proxy's internal pointer
	//  to point to the dialog, and set the dialog's back pointer to
	//  this proxy.
	ASSERT (AfxGetApp()->m_pMainWnd != NULL);
	ASSERT_VALID (AfxGetApp()->m_pMainWnd);
	ASSERT_KINDOF(CZhhDlg, AfxGetApp()->m_pMainWnd);
	m_pDialog = (CZhhDlg*) AfxGetApp()->m_pMainWnd;
	m_pDialog->m_pAutoProxy = this;
}

CZhhDlgAutoProxy::~CZhhDlgAutoProxy()
{
	// To terminate the application when all objects created with
	// 	with automation, the destructor calls AfxOleUnlockApp.
	//  Among other things, this will destroy the main dialog
	if (m_pDialog != NULL)
		m_pDialog->m_pAutoProxy = NULL;
	AfxOleUnlockApp();
}

void CZhhDlgAutoProxy::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(CZhhDlgAutoProxy, CCmdTarget)
	//{{AFX_MSG_MAP(CZhhDlgAutoProxy)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

BEGIN_DISPATCH_MAP(CZhhDlgAutoProxy, CCmdTarget)
	//{{AFX_DISPATCH_MAP(CZhhDlgAutoProxy)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_DISPATCH_MAP
END_DISPATCH_MAP()

// Note: we add support for IID_IZhh to support typesafe binding
//  from VBA.  This IID must match the GUID that is attached to the 
//  dispinterface in the .ODL file.

// {4297D21B-FBBA-460A-BF0B-E306DEFA3C45}
static const IID IID_IZhh =
{ 0x4297d21b, 0xfbba, 0x460a, { 0xbf, 0xb, 0xe3, 0x6, 0xde, 0xfa, 0x3c, 0x45 } };

BEGIN_INTERFACE_MAP(CZhhDlgAutoProxy, CCmdTarget)
	INTERFACE_PART(CZhhDlgAutoProxy, IID_IZhh, Dispatch)
END_INTERFACE_MAP()

// The IMPLEMENT_OLECREATE2 macro is defined in StdAfx.h of this project
// {81C6BB56-8081-4756-BB2A-18D649E54569}
IMPLEMENT_OLECREATE2(CZhhDlgAutoProxy, "Zhh.Application", 0x81c6bb56, 0x8081, 0x4756, 0xbb, 0x2a, 0x18, 0xd6, 0x49, 0xe5, 0x45, 0x69)

/////////////////////////////////////////////////////////////////////////////
// CZhhDlgAutoProxy message handlers

⌨️ 快捷键说明

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