📄 unionset.h
字号:
// unionset.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CUnionSet recordset
#ifndef __UNIONSET_H__
#define __UNIONSET_H__
#include "date.h"
class CUnionSet : public CRecordset
{
public:
CUnionSet(CDatabase* pDatabase = NULL);
// Field/Param Data
//{{AFX_FIELD(CUnionSet, CRecordset)
double m_HUSBAND;
double m_WIFE;
CString m_REASON;
//}}AFX_FIELD
CDate m_START;
CDate m_END;
double m_fIDParam;
// Implementation
protected:
virtual CString GetDefaultConnect(); // Default connection string
virtual CString GetDefaultSQL(); // Default SQL for Recordset
virtual void DoFieldExchange(CFieldExchange* pFX); // RFX support
DECLARE_DYNAMIC(CUnionSet)
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -