⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xkdbmsview.h

📁 简单数据库管理系统
💻 H
字号:
// xkDBMSView.h : interface of the CxkDBMSView class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_XKDBMSVIEW_H__D9D2F4B7_CF14_4152_9D5F_5874AD603D61__INCLUDED_)
#define AFX_XKDBMSVIEW_H__D9D2F4B7_CF14_4152_9D5F_5874AD603D61__INCLUDED_

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

class CxkDBMSView : public CFormView
{
protected: // create from serialization only
	CxkDBMSView();
	DECLARE_DYNCREATE(CxkDBMSView)

public:
	//{{AFX_DATA(CxkDBMSView)
	enum { IDD = IDD_XKDBMS_FORM };
	CEdit	m_newtablename;
	CButton	m_iskeyword;
	CButton	m_createtable;
	CTabCtrl	m_tab;
	CButton	m_updateRecord;
	CComboBox	m_attribute;
	CButton	m_insertField;
	CButton	m_deleteRecord;
	CButton	m_insertRecord;
	CListCtrl	m_fieldSet;
	CEdit	m_field;
	CEdit	m_sql;
	CButton	m_updateTables;
	CListBox	m_tableset;
	CButton	m_execSql;
	CListCtrl	m_recordset;
	//}}AFX_DATA
	CString  keyword_;
// Attributes
public:
	CxkDBMSDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CxkDBMSView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	void ShowField();
	void ShowRecord();
	void InitFieldSet();
	virtual ~CxkDBMSView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CxkDBMSView)
	afx_msg void OnSelchangeTab1(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnSelchangeAttribute();
	afx_msg void OnClickRecordlist(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnInsertField();
	afx_msg void OnCreatetable();
	afx_msg void OnSavedict();
	afx_msg void OnSavetable();
	afx_msg void OnLoaddict();
	afx_msg void OnInsertRecord();
	afx_msg void OnSelchangeTableset();
	afx_msg void OnEndlabeleditRecordlist(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnDeleteRecord();
	afx_msg void OnUpdateRecord();
	afx_msg void OnUpdateTableList();
	afx_msg void OnSqlExec();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in xkDBMSView.cpp
inline CxkDBMSDoc* CxkDBMSView::GetDocument()
   { return (CxkDBMSDoc*)m_pDocument; }
#endif

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

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

#endif // !defined(AFX_XKDBMSVIEW_H__D9D2F4B7_CF14_4152_9D5F_5874AD603D61__INCLUDED_)

⌨️ 快捷键说明

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