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

📄 moneysetup.cpp

📁 VC6数据库开发指南
💻 CPP
字号:
// MoneySetup.cpp : implementation file
//

#include "stdafx.h"
#include "manager.h"
#include "MoneySetup.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMoneySetup dialog


CMoneySetup::CMoneySetup(CWnd* pParent /*=NULL*/)
	: CDialog(CMoneySetup::IDD, pParent)
{
	//{{AFX_DATA_INIT(CMoneySetup)
	m_bigout = 0.;
	m_clothout = 0.;
	m_date = COleDateTime::GetCurrentTime();
	m_foodout = 0.;
	m_memo = _T("");
	m_otherin = 0.;
	m_salaryin = 0.;
	//}}AFX_DATA_INIT
}


void CMoneySetup::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CMoneySetup)
	DDX_Text(pDX, IDC_BIGOUT, m_bigout);
	DDX_Text(pDX, IDC_CLOTHOUT, m_clothout);
	DDX_Text(pDX, IDC_DATE, m_date);
	DDX_Text(pDX, IDC_FOODOUT, m_foodout);
	DDX_Text(pDX, IDC_MEMO, m_memo);
	DDX_Text(pDX, IDC_OTHERIN, m_otherin);
	DDX_Text(pDX, IDC_SALARYIN, m_salaryin);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CMoneySetup, CDialog)
	//{{AFX_MSG_MAP(CMoneySetup)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMoneySetup message handlers

⌨️ 快捷键说明

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