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

📄 fzn.cpp

📁 工资管理程序 自己做的程序 希望大家喜欢
💻 CPP
字号:
// FZN.cpp : implementation file
//

#include "stdafx.h"
#include "工资管理程序.h"
#include "FZN.h"
//#include "工资管理程序View.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// FZN dialog
extern int f;

FZN::FZN(CWnd* pParent /*=NULL*/)
	: CDialog(FZN::IDD, pParent)
{
	//{{AFX_DATA_INIT(FZN)
	m_dlgBAOX = 0.0;
	m_dlgMONS = 0.0;
	//}}AFX_DATA_INIT
}


void FZN::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(FZN)
	DDX_Text(pDX, IDC_EDITJS7, m_dlgBAOX);
	DDV_MinMaxDouble(pDX, m_dlgBAOX, 0., 10000.);
	DDX_Text(pDX, IDC_EDITJS5, m_dlgMONS);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(FZN, CDialog)
	//{{AFX_MSG_MAP(FZN)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// FZN message handlers

BOOL FZN::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
    if(f)
	{
		CWnd * pWndButn;
		pWndButn=GetDlgItem(IDC_EDITJS5);
		pWndButn->EnableWindow(FALSE);
	}
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

⌨️ 快捷键说明

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