studentDoc.cpp
上传用户:hzzhuce
上传日期:2013-04-01
资源大小:1289k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // studentDoc.cpp : implementation of the CStudentDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "student.h"
  5. #include "studentSet.h"
  6. #include "studentDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CStudentDoc
  14. IMPLEMENT_DYNCREATE(CStudentDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CStudentDoc, CDocument)
  16. //{{AFX_MSG_MAP(CStudentDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CStudentDoc construction/destruction
  23. CStudentDoc::CStudentDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. BITMAP BM;
  27. m_Bitmap.LoadBitmap(IDB_BITMAP);
  28. m_Bitmap.GetBitmap(&BM);
  29. m_nWidth=BM.bmWidth;
  30. m_nHeight=BM.bmHeight;
  31. }
  32. CStudentDoc::~CStudentDoc()
  33. {
  34. }
  35. BOOL CStudentDoc::OnNewDocument()
  36. {
  37. if (!CDocument::OnNewDocument())
  38. return FALSE;
  39. // TODO: add reinitialization code here
  40. // (SDI documents will reuse this document)
  41. return TRUE;
  42. }
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CStudentDoc serialization
  45. void CStudentDoc::Serialize(CArchive& ar)
  46. {
  47. if (ar.IsStoring())
  48. {
  49. // TODO: add storing code here
  50. }
  51. else
  52. {
  53. // TODO: add loading code here
  54. }
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CStudentDoc diagnostics
  58. #ifdef _DEBUG
  59. void CStudentDoc::AssertValid() const
  60. {
  61. CDocument::AssertValid();
  62. }
  63. void CStudentDoc::Dump(CDumpContext& dc) const
  64. {
  65. CDocument::Dump(dc);
  66. }
  67. #endif //_DEBUG
  68. /////////////////////////////////////////////////////////////////////////////
  69. // CStudentDoc commands