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

📄 dlgproxy.cpp

📁 神经元网络。可以进行矩阵神经网络计算。MFC写的
💻 CPP
字号:
// DlgProxy.cpp : implementation file
//

#include "stdafx.h"
#include "毕业设计.h"
#include "DlgProxy.h"
#include "毕业设计Dlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CMyDlgAutoProxy

IMPLEMENT_DYNCREATE(CMyDlgAutoProxy, CCmdTarget)

CMyDlgAutoProxy::CMyDlgAutoProxy()
{
	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(CMyDlg, AfxGetApp()->m_pMainWnd);
	m_pDialog = (CMyDlg*) AfxGetApp()->m_pMainWnd;
	m_pDialog->m_pAutoProxy = this;
}

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

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

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

// {8AE769E5-97EE-4C13-ABDE-47FD9FE8E2FF}
static const IID IID_IMy =
{ 0x8ae769e5, 0x97ee, 0x4c13, { 0xab, 0xde, 0x47, 0xfd, 0x9f, 0xe8, 0xe2, 0xff } };

BEGIN_INTERFACE_MAP(CMyDlgAutoProxy, CCmdTarget)
	INTERFACE_PART(CMyDlgAutoProxy, IID_IMy, Dispatch)
END_INTERFACE_MAP()

// The IMPLEMENT_OLECREATE2 macro is defined in StdAfx.h of this project
// {F80B20F8-D005-42CB-BCDF-B46E8F66BEDD}
IMPLEMENT_OLECREATE2(CMyDlgAutoProxy, "My.Application", 0xf80b20f8, 0xd005, 0x42cb, 0xbc, 0xdf, 0xb4, 0x6e, 0x8f, 0x66, 0xbe, 0xdd)

/////////////////////////////////////////////////////////////////////////////
// CMyDlgAutoProxy message handlers

⌨️ 快捷键说明

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