⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 productreportview.h

📁 实现年度产值报表
💻 H
字号:
// ProductReportView.h : interface of the CProductReportView class
//
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INCLUDES()
#include "labelcontrol.h"
//}}AFX_INCLUDES

#if !defined(AFX_PRODUCTREPORTVIEW_H__38259165_617C_4273_98F6_F3253FA894AE__INCLUDED_)
#define AFX_PRODUCTREPORTVIEW_H__38259165_617C_4273_98F6_F3253FA894AE__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CProductReportView : public CFormView
{
protected: // create from serialization only
	CProductReportView();
	DECLARE_DYNCREATE(CProductReportView)

public:
	//{{AFX_DATA(CProductReportView)
	enum { IDD = IDD_PRODUCTREPORT_FORM };
	CComboBox	m_MonthList;
	int		m_nYear;
	CLabelControl	m_YearProduct;
	int		m_nMonthProduct;
	CString	m_sNote;
	CString	m_sRiseRate;
	//}}AFX_DATA

// Attributes
public:
	CProductReportDoc* GetDocument();

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CProductReportView)
	public:
	virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void OnInitialUpdate(); // called first time after construct
	virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
	virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
	virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
	//}}AFX_VIRTUAL

// Implementation
public:
	virtual ~CProductReportView();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CProductReportView)
	afx_msg void OnChangeMonthNote();
	afx_msg void OnChangeYear();
	afx_msg void OnChangeMonthProduct();
	afx_msg void OnDeltaposSpinYear(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnSelchangeMonth();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	int m_nCurrentMonth;
};

#ifndef _DEBUG  // debug version in ProductReportView.cpp
inline CProductReportDoc* CProductReportView::GetDocument()
   { return (CProductReportDoc*)m_pDocument; }
#endif

/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_PRODUCTREPORTVIEW_H__38259165_617C_4273_98F6_F3253FA894AE__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -