• 大小: 4.3MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-29
  • 语言: C/C++
  • 标签: MFC  封装  

资源简介

MFC 对话框封装Dll,简单实现,导出接口,导出Class类

资源截图

代码片段和文件信息

// DllDialog.cpp : implementation file
//

#include “stdafx.h“
#include “TestDll.h“
#include “DllDialog.h“

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

/////////////////////////////////////////////////////////////////////////////
// CDllDialog dialog


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


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


BEGIN_MESSAGE_MAP(CDllDialog CDialog)
//{{AFX_MSG_MAP(CDllDialog)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDllDialog message handlers

void CDllDialog::OnOK() 
{
// TODO: Add extra validation here
MessageBox(“此处调用数据库封装““陈梵封装“);
CDialog::OnOK();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-08-22 09:14  TestDll\
     目录           0  2014-08-22 08:51  TestDll\Debug\
     文件       10981  2014-08-22 08:51  TestDll\Debug\DllDialog.obj
     文件      168213  2014-08-22 08:51  TestDll\Debug\StdAfx.obj
     文件     1331260  2014-08-22 08:51  TestDll\Debug\TestDll.dll
     文件         609  2014-08-22 08:51  TestDll\Debug\TestDll.exp
     文件     1716176  2014-08-22 08:51  TestDll\Debug\TestDll.ilk
     文件        1922  2014-08-22 08:51  TestDll\Debug\TestDll.lib
     文件       10451  2014-08-22 08:51  TestDll\Debug\TestDll.obj
     文件     8469284  2014-08-22 08:51  TestDll\Debug\TestDll.pch
     文件     2384896  2014-08-22 08:51  TestDll\Debug\TestDll.pdb
     文件        6972  2014-08-22 08:50  TestDll\Debug\TestDll.res
     文件        3486  2014-08-22 08:51  TestDll\Debug\global.obj
     文件      254976  2014-08-22 08:51  TestDll\Debug\vc60.idb
     文件      577536  2014-08-22 08:51  TestDll\Debug\vc60.pdb
     文件        1098  2014-08-22 08:50  TestDll\DllDialog.cpp
     文件        1232  2014-08-22 08:51  TestDll\DllDialog.h
     文件        2577  2014-08-22 08:43  TestDll\ReadMe.txt
     文件         209  2014-08-22 08:43  TestDll\StdAfx.cpp
     文件        1534  2014-08-22 08:51  TestDll\StdAfx.h
     文件       32848  2014-08-22 08:50  TestDll\TestDll.aps
     文件         707  2014-08-22 09:11  TestDll\TestDll.clw
     文件        1786  2014-08-22 09:14  TestDll\TestDll.cpp
     文件         187  2014-08-22 08:43  TestDll\TestDll.def
     文件        4334  2014-08-22 09:14  TestDll\TestDll.dsp
     文件        1264  2014-08-22 08:43  TestDll\TestDll.h
     文件        1632  2014-08-22 08:51  TestDll\TestDll.plg
     文件        4118  2014-08-22 08:50  TestDll\TestDll.rc
     文件         149  2014-08-22 08:50  TestDll\global.cpp
     目录           0  2014-08-22 08:43  TestDll\res\
     文件         399  2014-08-22 08:43  TestDll\res\TestDll.rc2
............此处省略1个文件信息

评论

共有 条评论