05-09-22-vc-1.txt
上传用户:sy_lfz
上传日期:2015-02-22
资源大小:1279k
文件大小:2k
源码类别:

VC书籍

开发平台:

Visual C++

  1. #if !defined(AFX_DLLDIALOG_H__CEA4C6AF_245D_48A6_B11A_A5521EAD7C4E__INCLUDED_)
  2. #define AFX_DLLDIALOG_H__CEA4C6AF_245D_48A6_B11A_A5521EAD7C4E__INCLUDED_
  3.  
  4. #if _MSC_VER > 1000
  5. #pragma once
  6. #endif // _MSC_VER > 1000
  7. // DllDialog.h : header file
  8.  
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CDllDialog dialog
  11.  
  12. class CDllDialog : public CDialog
  13. {
  14. // Construction
  15. public:
  16.      CDllDialog(CWnd* pParent = NULL);   // standard constructor
  17.  
  18.      enum { IDD = IDD_DLL_DIALOG };
  19.  
  20.      protected:
  21.      virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  22.  
  23. // Implementation
  24. protected:
  25.  
  26.      afx_msg void OnHelloButton();
  27.      DECLARE_MESSAGE_MAP()
  28. };
  29.  
  30. #endif 
  31.  
  32. // DllDialog.cpp : implementation file
  33.  
  34. #include "stdafx.h"
  35. #include "RegularDll.h"
  36. #include "DllDialog.h"
  37.  
  38. #ifdef _DEBUG
  39. #define new DEBUG_NEW
  40. #undef THIS_FILE
  41. static char THIS_FILE[] = __FILE__;
  42. #endif
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CDllDialog dialog
  46.  
  47. CDllDialog::CDllDialog(CWnd* pParent /*=NULL*/)
  48.      : CDialog(CDllDialog::IDD, pParent)
  49. {
  50. }
  51.  
  52. void CDllDialog::DoDataExchange(CDataExchange* pDX)
  53. {
  54.      CDialog::DoDataExchange(pDX);
  55. }
  56.  
  57. BEGIN_MESSAGE_MAP(CDllDialog, CDialog)
  58.      ON_BN_CLICKED(IDC_HELLO_BUTTON, OnHelloButton)
  59. END_MESSAGE_MAP()
  60.  
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CDllDialog message handlers
  63.  
  64. void CDllDialog::OnHelloButton() 
  65. {
  66.      MessageBox("Hello,pconline的网友","pconline");
  67. }