📄 reportdlg.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -