error C2039: 'GetYear' : is not a member of 'CDateTimeCtrl' MFC ado access 插入 时间类型
代码:voidCAdd::OnOK(){//TODO:AddextravalidationhereUpdateData(true);CStringsql,strTime,...
代码:
void CAdd::OnOK()
{
// TODO: Add extra validation here
UpdateData(true);
CString sql,strTime,strTemp,temp;
strTemp.Format("%d",m_date.GetYear());
strTime=strTemp;
strTemp.Format("%d",m_date.GetMonth());
strTime=strTime+"-"+strTemp;
strTemp.Format("%d",m_date.GetDay());
strTime=strTime+"-"+strTemp;
GetDlgItemText(IDOK,temp);
if(temp=="Ìí¼Ó")
{
// CTime now=CTime::GetCurrentTime();
// nowtime=now.Format(_T("%YÄê%mÔÂ%dÈÕ%Hʱ%M·Ö%SÃë"));
CString sql;
sql.Format(_T("insert into payment values('%s','%s',%f,'%s','%s')"),m_name,strTime,m_money,m_cobReason,m_beizhu);
_variant_t RecordsAffected;
theApp.m_pConnection->Execute((_bstr_t)sql,&RecordsAffected,adCmdText);
AfxMessageBox("成功插入一条数据")
//shuaxin List列表
CM1316App *pApp=(CM1316App *)AfxGetApp();
CM1316Dlg *pDlg=(CM1316Dlg *)pApp->m_pMainWnd;
sql="SELECT * FROM payment where name='"+theApp.name+"'";
pDlg->ReadtoList(sql);
m_date=strTime;
m_money=0.0;
m_cobReason="";
m_beizhu="";
UpdateData(false);
}
return;
} 展开
void CAdd::OnOK()
{
// TODO: Add extra validation here
UpdateData(true);
CString sql,strTime,strTemp,temp;
strTemp.Format("%d",m_date.GetYear());
strTime=strTemp;
strTemp.Format("%d",m_date.GetMonth());
strTime=strTime+"-"+strTemp;
strTemp.Format("%d",m_date.GetDay());
strTime=strTime+"-"+strTemp;
GetDlgItemText(IDOK,temp);
if(temp=="Ìí¼Ó")
{
// CTime now=CTime::GetCurrentTime();
// nowtime=now.Format(_T("%YÄê%mÔÂ%dÈÕ%Hʱ%M·Ö%SÃë"));
CString sql;
sql.Format(_T("insert into payment values('%s','%s',%f,'%s','%s')"),m_name,strTime,m_money,m_cobReason,m_beizhu);
_variant_t RecordsAffected;
theApp.m_pConnection->Execute((_bstr_t)sql,&RecordsAffected,adCmdText);
AfxMessageBox("成功插入一条数据")
//shuaxin List列表
CM1316App *pApp=(CM1316App *)AfxGetApp();
CM1316Dlg *pDlg=(CM1316Dlg *)pApp->m_pMainWnd;
sql="SELECT * FROM payment where name='"+theApp.name+"'";
pDlg->ReadtoList(sql);
m_date=strTime;
m_money=0.0;
m_cobReason="";
m_beizhu="";
UpdateData(false);
}
return;
} 展开
展开全部
CTime m_time;
m_date.GetTime(&m_time);
//strTime.Format("%d-%d-%d",m_time.GetYear(),m_time.GetMonth(),m_time.GetDay());
strTime = m_time.Format("%Y-%m-%d");
m_date.GetTime(&m_time);
//strTime.Format("%d-%d-%d",m_time.GetYear(),m_time.GetMonth(),m_time.GetDay());
strTime = m_time.Format("%Y-%m-%d");
追问
m_date.GetTime(&m_time);
这个只有一个变量 编译报错
error C2664: 'unsigned long __thiscall CDateTimeCtrl::GetTime(class CTime &) const' : cannot convert parameter 1 from 'class CTime *' to 'class CTime &'
追答
哦,应该不需要加地址符&,手边没有调试工具,纯手写的没调试,呵呵。
m_date.GetTime(m_time);
展开全部
CTime tm = CTime::GetCurrentTime();
strTemp.Format("%d",tm.GetYear();
strTemp.Format("%d",tm.GetYear();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
提示你函数返回值问题,用时间格式化函数转化一下哦。GetYear,这个得到的是年份,是一个整数,不是时间日期类型哦
来自:求助得到的回答
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询