📄 recorddlg.cpp
字号:
// recordDlg.cpp : implementation file
//
#include "stdafx.h"
#include "fee.h"
#include "recordDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CrecordDlg dialog
CrecordDlg::CrecordDlg(CWnd* pParent /*=NULL*/)
: CDialog(CrecordDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CrecordDlg)
m_bin = FALSE;
m_bout = FALSE;
m_strendday = _T("");
m_strendhour = _T("");
m_strendminute = _T("");
m_strendmonth = _T("");
m_strendsecond = _T("");
m_strendyear = _T("");
m_strstartday = _T("");
m_strstarthour = _T("");
m_strstartminute = _T("");
m_strstartmonth = _T("");
m_strstartsecond = _T("");
m_strstartyear = _T("");
m_strinputnum = _T("");
m_strLocalCode = _T("");
//}}AFX_DATA_INIT
}
void CrecordDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CrecordDlg)
DDX_Check(pDX, IDC_CHECK_in, m_bin);
DDX_Check(pDX, IDC_CHECK_out, m_bout);
DDX_CBString(pDX, IDC_COMBO_ENDDAY, m_strendday);
DDX_CBString(pDX, IDC_COMBO_ENDHOUR, m_strendhour);
DDX_CBString(pDX, IDC_COMBO_ENDMINUTE, m_strendminute);
DDX_CBString(pDX, IDC_COMBO_ENDMONTH, m_strendmonth);
DDX_CBString(pDX, IDC_COMBO_ENDSECOND, m_strendsecond);
DDX_CBString(pDX, IDC_COMBO_ENDYEAR, m_strendyear);
DDX_CBString(pDX, IDC_COMBO_STARTDAY, m_strstartday);
DDX_CBString(pDX, IDC_COMBO_STARTHOUR, m_strstarthour);
DDX_CBString(pDX, IDC_COMBO_STARTMINUTE, m_strstartminute);
DDX_CBString(pDX, IDC_COMBO_STARTMONTH, m_strstartmonth);
DDX_CBString(pDX, IDC_COMBO_STARTSECOND, m_strstartsecond);
DDX_CBString(pDX, IDC_COMBO_STARTYEAR, m_strstartyear);
DDX_Text(pDX, IDC_inputnum, m_strinputnum);
DDX_Text(pDX, IDC_EDIT_LocalCode, m_strLocalCode);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CrecordDlg, CDialog)
//{{AFX_MSG_MAP(CrecordDlg)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CrecordDlg message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -