ListPrintPage2.cpp
上传用户:ledldq
上传日期:2007-01-04
资源大小:95k
文件大小:1k
源码类别:

打印编程

开发平台:

Visual C++

  1. // ListPrintPage2.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "PrintManager.h"
  5. #include "ListPrintPage2.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CListPrintPage2 dialog
  13. CListPrintPage2::CListPrintPage2(CWnd* pParent /*=NULL*/)
  14. : CDialog(CListPrintPage2::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CListPrintPage2)
  17. iDown = 0;
  18. iDx = 0;
  19. iSx = 0;
  20. iUp = 0;
  21. //}}AFX_DATA_INIT
  22. }
  23. void CListPrintPage2::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CListPrintPage2)
  27. DDX_Text(pDX, IDC_ED_MMDOWN, iDown);
  28. DDV_MinMaxInt(pDX, iDown, 0, 300);
  29. DDX_Text(pDX, IDC_ED_MMDX, iDx);
  30. DDV_MinMaxInt(pDX, iDx, 0, 300);
  31. DDX_Text(pDX, IDC_ED_MMSX, iSx);
  32. DDV_MinMaxInt(pDX, iSx, 0, 300);
  33. DDX_Text(pDX, IDC_ED_MMUP, iUp);
  34. //}}AFX_DATA_MAP
  35. }
  36. BEGIN_MESSAGE_MAP(CListPrintPage2, CDialog)
  37. //{{AFX_MSG_MAP(CListPrintPage2)
  38. // NOTE: the ClassWizard will add message map macros here
  39. //}}AFX_MSG_MAP
  40. END_MESSAGE_MAP()
  41. /////////////////////////////////////////////////////////////////////////////
  42. // CListPrintPage2 message handlers
  43. void CListPrintPage2::Update()
  44. {
  45. UpdateData();
  46. }