开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC++
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
想请问为何只有更新到一列的栏资料
喂入的资料(Input):
表单的edittext
预期的正确结果(Expected Output):
整栏全部update
错误结果(Wrong Output):
只有更新到一列的栏资料
程式码(Code):(请善用置底文网页, 记得排版)
XXXView::OnUpdate()
{
CString cs,msg;
double d;
for(int i=0;m_pSet->GetRecordCount();i++)
{
m_pSet->Edit();
d=m_pSet->m_dwCalWt;
GetDlgItem(IDC_dwCalWT)->GetWindowText(cs);
d=atof((LPCTSTR)cs);
m_pSet->MoveNext();
UpdateData();
}
MessageBox(cs);
m_pSet->Update();
MessageBox("更新完成!!");
}
补充说明(Supplement):
这是我第二篇询问MFC database Update
请各位大大指教
thanks