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

📄 loadextdll.cpp

📁 一系列的c++例子 一步一步由浅入深 有 聊天室
💻 CPP
字号:
// LoadExtDll.cpp : implementation file
//
// LoadExtDllDlg.cpp : implementation file
#include "..\ExtDialog.h"
#pragma comment( lib, "ExtDll.lib" )

#include "stdafx.h"
#include "LoadExtDllDlg.h"
#include "LoadExtDll.h"

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

/////////////////////////////////////////////////////////////////////////////
// CLoadExtDll dialog


CLoadExtDll::CLoadExtDll(CWnd* pParent /*=NULL*/)
	: CDialog(CLoadExtDll::IDD, pParent)
{
	//{{AFX_DATA_INIT(CLoadExtDll)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CLoadExtDll::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CLoadExtDll)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CLoadExtDll, CDialog)
	//{{AFX_MSG_MAP(CLoadExtDll)
	ON_BN_CLICKED(IDC_BUTTON1, OnDllcallButton)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLoadExtDll message handlers

void CLoadExtDll::OnDllcallButton() 
{
	// TODO: Add your control notification handler code here
	CExtDialog extDialog;
 extDialog.DoModal();

	
}

⌨️ 快捷键说明

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