MFC的执行程序在不同电脑上运行结果不一致。
我现在遇到了一个问题,我用MFC开发的应用程序在我和我同事的电脑上运行没问题,我同事的电脑没装VC++6.0。然后我装在另一个台电脑(假如是A电脑),虽然在A电脑上能运行...
我现在遇到了一个问题,我用MFC开发的应用程序在我和我同事的电脑上运行没问题,我同事的电脑没装VC++6.0。然后我装在另一个台电脑(假如是A电脑),虽然在A电脑上能运行,但是会出现错误。错误的地方是如下的代码:
void PEIZHI::OnChangeEditMac3()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
CString str1;
CString str2;
CString str3;
GetDlgItem(IDC_EDIT_MAC3)->GetWindowText(str1);
//准备开始比较MAC,先截取发送和返回的
str2=m_SENDMAC.Mid(5,17);//截取发送的指令,取MAC号
str3=str1.Mid(6,17);//截取返回MAC
str3.MakeUpper();
if(strcmp(str2,str3)==0)
{
SetTimer(5,1000,NULL);
MessageBox("MAC号烧写成功!","提示");
}
else
{
MessageBox("MAC号烧写失败!","警告");
}
}
首先弹出了MessageBox("MAC号烧写成功!","提示");然后又弹出了MessageBox("MAC号烧写失败!","警告");
这个是什么原因。请大神帮忙分析。然后我又把VC++装在了A电脑上调试,还是会出现这个问题,但是程序的其他地方又能正常运行。 展开
void PEIZHI::OnChangeEditMac3()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
CString str1;
CString str2;
CString str3;
GetDlgItem(IDC_EDIT_MAC3)->GetWindowText(str1);
//准备开始比较MAC,先截取发送和返回的
str2=m_SENDMAC.Mid(5,17);//截取发送的指令,取MAC号
str3=str1.Mid(6,17);//截取返回MAC
str3.MakeUpper();
if(strcmp(str2,str3)==0)
{
SetTimer(5,1000,NULL);
MessageBox("MAC号烧写成功!","提示");
}
else
{
MessageBox("MAC号烧写失败!","警告");
}
}
首先弹出了MessageBox("MAC号烧写成功!","提示");然后又弹出了MessageBox("MAC号烧写失败!","警告");
这个是什么原因。请大神帮忙分析。然后我又把VC++装在了A电脑上调试,还是会出现这个问题,但是程序的其他地方又能正常运行。 展开
1个回答
展开全部
if(strcmp(str2,str3)==0)
{
SetTimer(5,1000,NULL);
CString strMsg;
strMsg.Format(L"str1=%s\r\nstr2=%s\r\nstr3=%s\r\nMAC号烧写成功!", str1,str1,str2);
AfxMessageBox(strMsg);
//MessageBox("MAC号烧写成功!","提示");
}
else
{
CString strMsg;
strMsg.Format(L"str1=%s\r\nstr2=%s\r\nstr3=%s\r\nMAC号烧写失败!", str1,str1,str2);
AfxMessageBox(strMsg);
//MessageBox("MAC号烧写失败!","警告");
}
更多追问追答
追问
你只是变了下Box形式而已,估计还是会出错。
追答
弹出2次说明此函数被调用了2次,上面的修改可以让你直观看到调用2次,每次的结果是什么?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询