adotestview.h

来自「一个完整的教务管理系统。利用MFC开发」· C头文件 代码 · 共 78 行

H
78
字号
// AdoTestView.h : interface of the CAdoTestView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_ADOTESTVIEW_H__C4F20CA9_1B92_43DF_B320_89A1A3D2BD0A__INCLUDED_)
#define AFX_ADOTESTVIEW_H__C4F20CA9_1B92_43DF_B320_89A1A3D2BD0A__INCLUDED_

#include"ADOManager.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CAdoTestView : public CView
{
protected: // create from serialization only
	CAdoTestView();
	DECLARE_DYNCREATE(CAdoTestView)

// Attributes
public:
	CAdoTestDoc* GetDocument();    
	ADOManager adomana;
// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAdoTestView)
	public:
	virtual void OnDraw(CDC* pDC);  // overridden to draw this view
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	bool sqlchoice;
	virtual ~CAdoTestView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CAdoTestView)
	afx_msg void OnDestroy();
	afx_msg void OnNew();
	afx_msg void OnInput();
	afx_msg void OnDelete();
	afx_msg void Onupdata();
	afx_msg void OnNum();
	afx_msg void OnName();
	afx_msg void OnSearch();
	afx_msg void OnSearchSp();
	afx_msg void OnModify();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in AdoTestView.cpp
inline CAdoTestDoc* CAdoTestView::GetDocument()
   { return (CAdoTestDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_ADOTESTVIEW_H__C4F20CA9_1B92_43DF_B320_89A1A3D2BD0A__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?