reportdlg.h

来自「access dao 数据库」· C头文件 代码 · 共 54 行

H
54
字号
#pragma once
#include "afxcmn.h"
#include "afxwin.h"
#include "XPButton.h"
#include "afxdao.h"
// reportdlg 对话框

class reportdlg : public CDialog
{
	DECLARE_DYNAMIC(reportdlg)

public:
	reportdlg(CWnd* pParent = NULL);   // 标准构造函数
	virtual ~reportdlg();

// 对话框数据
	enum { IDD = IDD_DIALOG4 };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
    CString nametonum[40];
	DECLARE_MESSAGE_MAP()
public:
	virtual BOOL OnInitDialog();
	CListCtrl reportlist;
	CXPButton checkbymonthbt;
	CXPButton savetoexcelbt;
	CXPButton closebt;
	CStatic rptitlest;
	afx_msg void OnPaint();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	CXPButton sumallbt;
	CString rptitlestr;
	CString sumtypestr;
	CString sumcatlogstr;
	afx_msg void OnCbnSelchangeCombo1();
	afx_msg void OnCbnSelchangeCombo5();
	CComboBox sumtypecombo;
	CComboBox sumcatlogcombo;
	afx_msg void OnBnClickedButton2();
	afx_msg void OnBnClickedButton1();
	afx_msg void OnBnClickedButton11();
	afx_msg void OnBnClickedCancel();
	CString yearstr;
	CStatic choosest;
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	int focus;
	afx_msg void OnBnSetfocusButton2();
	afx_msg void OnBnKillfocusButton2();
	afx_msg void OnBnSetfocusButton1();
	afx_msg void OnBnKillfocusButton1();
	bool isok;
};

⌨️ 快捷键说明

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