Source code of Windows XP (NT5)
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.

55 lines
1.1 KiB

  1. /*++
  2. Copyright (C) 1997-2001 Microsoft Corporation
  3. Module Name:
  4. Abstract:
  5. History:
  6. --*/
  7. // QuerySheet.cpp : implementation file
  8. //
  9. #include "stdafx.h"
  10. #include "WMITest.h"
  11. #include "QuerySheet.h"
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CQuerySheet
  19. IMPLEMENT_DYNAMIC(CQuerySheet, CPropertySheet)
  20. CQuerySheet::CQuerySheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  21. :CPropertySheet(nIDCaption, pParentWnd, iSelectPage),
  22. m_bColsNeeded(TRUE)
  23. {
  24. }
  25. CQuerySheet::CQuerySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  26. :CPropertySheet(pszCaption, pParentWnd, iSelectPage),
  27. m_bColsNeeded(TRUE)
  28. {
  29. }
  30. CQuerySheet::~CQuerySheet()
  31. {
  32. }
  33. BEGIN_MESSAGE_MAP(CQuerySheet, CPropertySheet)
  34. //{{AFX_MSG_MAP(CQuerySheet)
  35. // NOTE - the ClassWizard will add and remove mapping macros here.
  36. //}}AFX_MSG_MAP
  37. END_MESSAGE_MAP()
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CQuerySheet message handlers