|
用MFC写了一个电话计费的小程序,只有一个对话框,程序编译和链接都没问题,运行的时候也正常的,Access数据库里内容也正确,但是就是退出的时候总是报错:
Debug Assertion Failed!
Programme:.....(路径名)
File: afx.inl
Line: 122
下面是退出按钮的代码:
void CFeeCountingDlg::OnButton1out()
{
//判断按钮状态
if(Begin_Button_State != FALSE && Finish_Button_State == FALSE)
{
KillTimer(0); // 结束时钟
CDialog::OnCancel();// 退出( 就是这句调试的时候报错)
}
else
MessageBox("通话中......");
// TODO: Add your control notification handler code here
}
|
|