assetdlg.h

来自「该项目是为PPC(PocketPc)使用者提供方便的理财事务.如,现金的借贷,债」· C头文件 代码 · 共 72 行

H
72
字号
#if !defined(AFX_ASSETDLG_H__83A85C52_CA73_4A28_B0BA_E9994250E37E__INCLUDED_)
#define AFX_ASSETDLG_H__83A85C52_CA73_4A28_B0BA_E9994250E37E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// AssetDlg.h : header file
//
#include "CeBtnST.h"
#include "SortListCtrl.h"
#include "inireader.h"
#include "Asset.h"
/////////////////////////////////////////////////////////////////////////////
// CAssetDlg dialog

class CAssetDlg : public CDialog
{
// Construction
public:
	void SetAsset(CString key,CString value,int i);
	BOOL ReadIni(CString file);
	CAssetDlg(CWnd* pParent = NULL);   // standard constructor

	CIniReader * pAssetIni;
	CIniReader * pAssetInfo;
	CString		m_strAssetName;     //资产(债权债务)帐户名
	CAsset		*m_pCAsset[250];	   //维护一个资产的列表
	int			m_iCount;

	CString	g_strMoneyType;  //默认是RMB
	CString	g_strBeginDate;  //默认是2005-01-01
	CString	g_strLastDate;  //默认是2005-01-01

	int	g_iBeginSum; //开户金额
	int	g_iSumOut;
	int g_iSumIn;
	int	g_iLeft;
// Dialog Data
	//{{AFX_DATA(CAssetDlg)
	enum { IDD = IDD_DIALOG_ASSET };
	CCeButtonST	m_btnAssetoper;
	CSortListCtrl	m_ctrAssetList;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CAssetDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CAssetDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg void OnBtnassetdetail();
	afx_msg void OnAdd();
	afx_msg void OnModifyasset();
	afx_msg void OnDelete();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_ASSETDLG_H__83A85C52_CA73_4A28_B0BA_E9994250E37E__INCLUDED_)

⌨️ 快捷键说明

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