📄 querysheet.h
字号:
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -