home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 April / VPR0004A.BIN / OLS / SADKT100 / sadkt100.lzh / SrcFiles.lzh / MySheet.cpp < prev    next >
C/C++ Source or Header  |  1999-12-31  |  982b  |  42 lines

  1. // MySheet.cpp : インプリメンテーション ファイル
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "resource.h"
  6. #include "MySheet.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMySheet
  16.  
  17. IMPLEMENT_DYNAMIC(CMySheet, CPropertySheet)
  18.  
  19. CMySheet::CMySheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage)
  20.     :CPropertySheet(nIDCaption, pParentWnd, iSelectPage)
  21. {
  22. }
  23.  
  24. CMySheet::CMySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage)
  25.     :CPropertySheet(pszCaption, pParentWnd, iSelectPage)
  26. {
  27. }
  28.  
  29. CMySheet::~CMySheet()
  30. {
  31. }
  32.  
  33.  
  34. BEGIN_MESSAGE_MAP(CMySheet, CPropertySheet)
  35.     //{{AFX_MSG_MAP(CMySheet)
  36.         // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します。
  37.     //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CMySheet メッセージ ハンドラ
  42.