home *** CD-ROM | disk | FTP | other *** search
- // JoinView.h : interface of the CJoinView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CJoinSet;
-
- class CJoinView : public CDaoRecordView
- {
- protected: // create from serialization only
- CJoinView();
- DECLARE_DYNCREATE(CJoinView)
-
- public:
- //{{AFX_DATA(CJoinView)
- enum { IDD = IDD_JOIN_FORM };
- CJoinSet* m_pSet;
- //}}AFX_DATA
-
- // Attributes
- public:
- CJoinDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CJoinView)
- public:
- virtual CDaoRecordset* OnGetRecordset();
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual void OnInitialUpdate(); // called first time after construct
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CJoinView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CJoinView)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in JoinView.cpp
- inline CJoinDoc* CJoinView::GetDocument()
- { return (CJoinDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-