Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1.6 KiB

  1. // ErrorDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "viewex.h"
  5. #include "errordlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CErrorDialog dialog
  13. /***********************************************************
  14. Function:
  15. Arguments:
  16. Return:
  17. Purpose:
  18. Author(s):
  19. Revision:
  20. Date:
  21. ***********************************************************/
  22. CErrorDialog::CErrorDialog(CWnd* pParent /*=NULL*/)
  23. : CDialog(CErrorDialog::IDD, pParent)
  24. {
  25. //{{AFX_DATA_INIT(CErrorDialog)
  26. m_Operation = _T("");
  27. m_Result = _T("");
  28. m_Value = _T("");
  29. //}}AFX_DATA_INIT
  30. }
  31. /***********************************************************
  32. Function:
  33. Arguments:
  34. Return:
  35. Purpose:
  36. Author(s):
  37. Revision:
  38. Date:
  39. ***********************************************************/
  40. void CErrorDialog::DoDataExchange(CDataExchange* pDX)
  41. {
  42. CDialog::DoDataExchange(pDX);
  43. //{{AFX_DATA_MAP(CErrorDialog)
  44. DDX_Text(pDX, IDC_ERROROPERATION, m_Operation);
  45. DDX_Text(pDX, IDC_ERRORRESULT, m_Result);
  46. DDX_Text(pDX, IDC_ERRORVALUE, m_Value);
  47. //}}AFX_DATA_MAP
  48. }
  49. BEGIN_MESSAGE_MAP(CErrorDialog, CDialog)
  50. //{{AFX_MSG_MAP(CErrorDialog)
  51. // NOTE: the ClassWizard will add message map macros here
  52. //}}AFX_MSG_MAP
  53. END_MESSAGE_MAP()
  54. /////////////////////////////////////////////////////////////////////////////
  55. // CErrorDialog message handlers