基于时间日历控件的获取选择时间比较的测试程序 VC
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
CTime mtime;
m_DateTimeCtrl.GetTime(mtime); //获取起始日期时间信息
int g,h,i,j,k,l;
CString m_show;
g=int(mtime.GetY ear())/10; //获取当前时间的年数
h=int(mtime.GetY ear())%10;
i=int(mtime.GetMonth())/10; //获取当前时间的月数
j=int(mtime.GetMonth())%10;
k=int(mtime.GetDay())/10; //获取当前时间的日数
l=int(mtime.GetDay())%10;
m_show.Format("%d%d年%d%d月%d%d日",g,h,i,j,k,l);
CTime time;
m_DateTimeCtrlStop.GetTime(time); //获取起始日期时间信息
int a,b,c,d,e,f;
CString m_show1;
a=int(time.GetY ear())/10; //获取当前时间的年数
b=int(time.GetY ear())%10;
c=int(time.GetMonth())/10; //获取当前时间的月数
d=int(time.GetMonth())%10;
e=int(time.GetDay())/10; //获取当前时间的日数
f=int(time.GetDay())%10;
m_show1.Format("%d%d年%d%d月%d%d日",a,b,c,d,e,f);
//MessageBox(m_show1);
if(m_show1>m_show)
{
MessageBox("大于");
}
else if(m_show1==m_show)
{
MessageBox("相等");
}
else
{
MessageBox("小于"); }