?? accountdlg.cpp
字號:
// AccountDlg.cpp : implementation file
//
#include "stdafx.h"
#include "細菌污染量監測.h"
#include "AccountDlg.h"
#include <time.h>
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAccountDlg dialog
CAccountDlg::CAccountDlg(CWnd* pParent /*=NULL*/)
: CDialog(CAccountDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CAccountDlg)
m_radio = -1;
//}}AFX_DATA_INIT
}
void CAccountDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAccountDlg)
DDX_Radio(pDX, IDC_RADIO1, m_radio);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAccountDlg, CDialog)
//{{AFX_MSG_MAP(CAccountDlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CAccountDlg message handlers
BOOL CAccountDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// TODO: Add extra initialization here
time_t t1;
time(&t1);
tm *t2=NULL;
t2=gmtime(&t1);
m_stryear.Format("%d年",t2->tm_year+1900);
SetDlgItemText(IDC_STATIC2,m_stryear);
m_radio=(t2->tm_mon)/3-1;
if(m_radio==-1)
m_radio=0;
UpdateData(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 + -