home *** CD-ROM | disk | FTP | other *** search
- // memoview.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMemoView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMemoView : public CFormView
- {
- DECLARE_DYNCREATE(CMemoView)
- protected:
- CMemoView(); // protected constructor used by dynamic creation
-
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- virtual void OnInitialUpdate();
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Form Data
- public:
- //{{AFX_DATA(CMemoView)
- enum { IDD = IDD_DIALOG1 };
- CString m_Date;
- CString m_Ref;
- CString m_From;
- CString m_To;
- CString m_Memo;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CMemoView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CMemoView)
- afx_msg void OnChangeDate();
- afx_msg void OnChangeRef();
- afx_msg void OnChangeFrom();
- afx_msg void OnChangeTo();
- afx_msg void OnChangeMemo();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-