RegListDLG.cpp
上传用户:lbr_007
上传日期:2019-05-31
资源大小:282k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

Visual C++

  1. // RegListDLG.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "tiffsample.h"
  5. #include "RegListDLG.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // RegListDLG dialog
  13. RegListDLG::RegListDLG(CWnd* pParent /*=NULL*/)
  14. : CDialog(RegListDLG::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(RegListDLG)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void RegListDLG::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(RegListDLG)
  24. DDX_Control(pDX, IDC_REG_LIST, m_list);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(RegListDLG, CDialog)
  28. //{{AFX_MSG_MAP(RegListDLG)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // RegListDLG message handlers
  33. BOOL RegListDLG::OnInitDialog() 
  34. {
  35. CDialog::OnInitDialog();
  36. // TODO: Add extra initialization here
  37. return TRUE;  // return TRUE unless you set the focus to a control
  38.               // EXCEPTION: OCX Property Pages should return FALSE
  39. }