ex28set.h
来自「一些VC++的经典实例」· C头文件 代码 · 共 50 行
H
50 行
// ex28Set.h : interface of the CEx28Set class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_EX28SET_H__9BC608BA_A0FA_4AF2_9ACC_E8ACBB7D86D7__INCLUDED_)
#define AFX_EX28SET_H__9BC608BA_A0FA_4AF2_9ACC_E8ACBB7D86D7__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CEx28Set : public CDaoRecordset
{
public:
CEx28Set(CDaoDatabase* pDatabase = NULL);
DECLARE_DYNAMIC(CEx28Set)
// Field/Param Data
//{{AFX_FIELD(CEx28Set, CDaoRecordset)
CString m_CourseID;
CString m_SectionNo;
CString m_InstructorID;
CString m_RoomNo;
CString m_Schedule;
short m_Capacity;
//}}AFX_FIELD
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CEx28Set)
public:
virtual CString GetDefaultDBName(); // REVIEW: Get a comment here
virtual CString GetDefaultSQL(); // default SQL for Recordset
virtual void DoFieldExchange(CDaoFieldExchange* pFX); // RFX support
//}}AFX_VIRTUAL
// Implementation
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_EX28SET_H__9BC608BA_A0FA_4AF2_9ACC_E8ACBB7D86D7__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?