home *** CD-ROM | disk | FTP | other *** search
- #ifndef __MYRECORDSET2_H__
- #define __MYRECORDSET2_H__
-
- // MyRecordset2.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMyRecordset2 recordset
-
- class CMyRecordset2 : public CRecordset
- {
- public:
- void DoBulkFieldExchange( CFieldExchange* pFX );
- CMyRecordset2(CDatabase* pDatabase = NULL);
- DECLARE_DYNAMIC(CMyRecordset2)
-
- // Field/Param Data
- //{{AFX_FIELD(CMyRecordset2, CRecordset)
- int m_major;
- int m_minor;
- int m_width;
- int m_priority;
- CString m_RGBColor;
- long m_threshold;
- CString m_style;
- CString m_hatch;
- long m_colorref;
- CString m_description;
- CString* m_pDescription;
- //}}AFX_FIELD
-
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMyRecordset2)
- public:
- virtual CString GetDefaultConnect(); // Default connection string
- virtual CString GetDefaultSQL(); // Default SQL for Recordset
- virtual void DoFieldExchange(CFieldExchange* pFX); // RFX support
- //}}AFX_VIRTUAL
-
- // Implementation
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- };
-
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
-
- #endif // __MYRECORDSET2_H__
-