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

📄 cashdlg.h

📁 该项目是为PPC(PocketPc)使用者提供方便的理财事务.如,现金的借贷,债务处理,证券买卖,以及物品管 理等等。该项目的主要用户群是:PPC使用者.
💻 H
字号:
#if !defined(AFX_CASHDLG_H__71483C5B_455D_47E9_BFF0_B75D2E080DD4__INCLUDED_)
#define AFX_CASHDLG_H__71483C5B_455D_47E9_BFF0_B75D2E080DD4__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// CashDlg.h : header file
//
#include "CeBtnST.h"
#include "SortListCtrl.h"
#include "inireader.h"
#include "Cash.h"
/////////////////////////////////////////////////////////////////////////////
// CCashDlg dialog

class CCashDlg : public CDialog
{
// Construction
public:
	BOOL EqualSection(CSection *pSec,CCash * pCash);
	void SetCash(CString key,CString value,int i);
	BOOL ReadIni(CString file);
	CCashDlg(CWnd* pParent = NULL);   // standard constructor


	CIniReader * pCashIni;
	CIniReader * pCashInfo;
	CString		m_strCashName;     //现金帐户名
	CCash		*m_pCCash[250];	   //维护一个现金的列表
	int			m_iCount;          //交易次数
	CString		m_strType;    //帐户类型,现金OR存款

	CString	m_strMoneyType;  //默认是RMB
	CString	m_strBeginDate;  //默认是2005-01-01
	CString	m_strLastDate;  //默认是2005-01-01

	int	m_iBeginSum; //开户金额
	int	m_iSumOut;
	int m_iSumIn;
	int	m_iLeft;
// Dialog Data
	//{{AFX_DATA(CCashDlg)
	enum { IDD = IDD_DIALOG_CASH };
	CCeButtonST	 m_btnOper;
	CSortListCtrl	m_ctrCashList;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CCashDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg void OnAdd();
	afx_msg void OnModify();
	afx_msg void OnDelete();
	afx_msg void OnBtncashdetail();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CASHDLG_H__71483C5B_455D_47E9_BFF0_B75D2E080DD4__INCLUDED_)

⌨️ 快捷键说明

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