home *** CD-ROM | disk | FTP | other *** search
- // mygravw.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CMygraphView form view
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CMygraphView : public CFormView
- {
- DECLARE_DYNCREATE(CMygraphView)
- protected:
- CMygraphView(); // protected constructor used by dynamic creation
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- virtual void OnInitialUpdate();
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Form Data
- public:
- //{{AFX_DATA(CMygraphView)
- enum { IDD = IDD_DIALOG1 };
- CVBControl* m_graph;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
-
- // Implementation
- protected:
- virtual ~CMygraphView();
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- // Generated message map functions
- //{{AFX_MSG(CMygraphView)
- afx_msg void OnSecondButton();
- afx_msg void OnPrintButton();
- afx_msg void OnButton1();
- afx_msg void OnButton2();
- afx_msg void OnButton3();
- afx_msg void OnButton4();
- afx_msg void OnButton5();
- afx_msg void OnButton6();
- afx_msg void OnButton7();
- afx_msg void OnButton8();
- afx_msg void OnButton9();
- afx_msg void OnButton10();
- afx_msg void OnClickGraph1(UINT, int, CWnd*, LPVOID);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-