课程设计View.h
上传用户:yhxbjx
上传日期:2018-11-07
资源大小:7142k
文件大小:2k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // 课程设计View.h : interface of the CMyView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_VIEW_H__79DB794B_EC01_4D71_9103_8937DC0F2083__INCLUDED_)
  5. #define AFX_VIEW_H__79DB794B_EC01_4D71_9103_8937DC0F2083__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMySet;
  10. class CMyView : public CRecordView
  11. {
  12. protected: // create from serialization only
  13. CMyView();
  14. DECLARE_DYNCREATE(CMyView)
  15. public:
  16. //{{AFX_DATA(CMyView)
  17. enum { IDD = IDD_MY_FORM };
  18. CMySet* m_pSet;
  19. CString user;
  20. CString pass;
  21. //}}AFX_DATA
  22. // Attributes
  23. public:
  24. CMyDoc* GetDocument();
  25. // Operations
  26. public:
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CMyView)
  30. public:
  31. virtual CRecordset* OnGetRecordset();
  32. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. virtual void OnInitialUpdate(); // called first time after construct
  36. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  37. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  38. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. virtual ~CMyView();
  43. #ifdef _DEBUG
  44. virtual void AssertValid() const;
  45. virtual void Dump(CDumpContext& dc) const;
  46. #endif
  47. protected:
  48. // Generated message map functions
  49. protected:
  50. //{{AFX_MSG(CMyView)
  51. afx_msg void OnButton1();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. #ifndef _DEBUG  // debug version in 课程设计View.cpp
  56. inline CMyDoc* CMyView::GetDocument()
  57.    { return (CMyDoc*)m_pDocument; }
  58. #endif
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_VIEW_H__79DB794B_EC01_4D71_9103_8937DC0F2083__INCLUDED_)