querysheet.h

来自「数据库管理软件,具有很多功能,应用DBS数据库」· C头文件 代码 · 共 62 行

H
62
字号
// QuerySheet.h : header file
//
// This class defines custom modal property sheet 
// CQuerySheet.
 
#ifndef __QUERYSHEET_H__
#define __QUERYSHEET_H__

#include "QueryPage.h"
#include "demoCommon.h"


/////////////////////////////////////////////////////////////////////////////
// CQuerySheet

class CQuerySheet : public CPropertySheet
{
	DECLARE_DYNAMIC(CQuerySheet)

// Construction
public:
	CQuerySheet(CWnd* pWndParent = NULL);

// Attributes
public:
	CSelectPage1  m_Page1;
	CWherePage2   m_Page2;
	CExecutePage3 m_Page3;
	CResultPage4  m_Page4;

	struct fieldDesc *prsltFieldDsc; // array of query result field description  (ie, view )
	int originFth[16]; // field nth in origin mode
	int rsltFcnt; // query result field count (one-based)
	int rsltRcnt; // query result record count (one-based)
	int rsltRlen; // query result record length

	struct queryCondition qcond; // query condition

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CQuerySheet)
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CQuerySheet();

// Generated message map functions
protected:
	//{{AFX_MSG(CQuerySheet)
		// NOTE - the ClassWizard will add and remove member functions here.
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif	// __QUERYSHEET_H__

⌨️ 快捷键说明

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