將數據庫中的內容加入樹型控件中,通過建立數據庫,再與樹型控件相連,實現數據庫的訪問。查詢結構清晰明了,操作方便。
現將其方法闡述如下:
工程名Ppp,視圖類名為CPppView。
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxdisp.h> // MFC Automation classes
#include <afxdao.h> //加入行,實現本視圖類對Access數據庫的訪問
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif
#include"ShengSet.h"
同時定義數據集類變量
public:
CShengSet *m_ShengSet;
#include"ShengSet.h"
同時定義數據集類變量
public:
CShengSet m_ShengSet;
CFormView::OnInitialUpdate();
CPppDoc* pDoc = (CPppDoc*)GetDocument(); //得到指向文檔類指針
&n