日期选择控件的使用演示
发表于:2007-07-01来源:作者:点击数:
标签:
void CTestDlg::OnBtnGetdate() { CTime tt; m_ss.GetTime(tt); MessageBox(tt.Format("%Y-%m-%d"),"控件上显示的日期是");
/* 方法二
CString str; m_ss.GetWindowText(str); MessageBox(str); */ } void CTestDlg::OnBtnSetdate() { CString str; GetDlgItemText(IDC_EDIT1,str); if(str.IsEmpty()) { MessageBox("请先在左边的编辑框中输入日期! 格式为 2008-12-20");
return; } int y=atoi(strtok(str.GetBuffer(0),"-")); int m=atoi(strtok(NULL,"-")); int d=atoi(strtok(NULL,"-")); CTime tt1(y,m,d,12,25,25); m_ss.SetTime(&tt1); }
|
原文转自:http://www.ltesting.net