Targets.cpp
上传用户:czjinwang
上传日期:2007-01-12
资源大小:2484k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. /*============================================================================
  2.    Copyright (c) 1996
  3.   Hewlett-Packard Company
  4.   ATTENTION: USE OF THIS SOFTWARE IS SUBJECT TO THE FOLLOWING TERMS.
  5.   Permission to use, copy, modify, distribute and/or sell this software 
  6.   and/or its documentation is hereby granted without fee. User agrees 
  7.   to display the above copyright notice and this license notice in all 
  8.   copies of the software and any documentation of the software. User 
  9.   agrees to assume all liability for the use of the software; Hewlett-Packard 
  10.   makes no representations about the suitability of this software for any 
  11.   purpose. It is provided "AS-IS without warranty of any kind,either express 
  12.   or implied. User hereby grants a royalty-free license to any and all 
  13.   derivatives based upon this software code base. 
  14. =============================================================================*/
  15. #include "stdafx.h"
  16. #include "browser.h"
  17. #include "Targets.h"
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. /////////////////////////////////////////////////////////////////////////////
  24. // Targets
  25. IMPLEMENT_DYNAMIC(Targets, CPropertySheet)
  26. Targets::Targets(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  27. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  28. {
  29. AddPage( &taredit);
  30. AddPage( &tardefs);
  31. }
  32. Targets::Targets(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  33. :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  34. {
  35. AddPage( &taredit);
  36. AddPage( &tardefs);
  37. }
  38. Targets::~Targets()
  39. {
  40. }
  41. BEGIN_MESSAGE_MAP(Targets, CPropertySheet)
  42. //{{AFX_MSG_MAP(Targets)
  43. ON_WM_CREATE()
  44. //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46. /////////////////////////////////////////////////////////////////////////////
  47. // Targets message handlers
  48. void Targets::PostNcDestroy() 
  49. {
  50. // TODO: Add your specialized code here and/or call the base class
  51. CPropertySheet::PostNcDestroy();
  52. delete this;
  53. }
  54. int Targets::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  55. {
  56. if (CPropertySheet::OnCreate(lpCreateStruct) == -1)
  57. return -1;
  58. // TODO: Add your specialized creation code here
  59. return 0;
  60. }
  61. BOOL Targets::OnInitDialog() 
  62. {
  63. // TODO: Add your specialized code here and/or call the base class
  64. CenterWindow();
  65. return CPropertySheet::OnInitDialog();
  66. }