本文介绍了MFC中验证电子邮件ID时出现问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
即时通讯使用此代码验证该即时通讯的电子邮件ID
im validating email id for that im using this code
void CEMailDlg::OnValidate()
{
// TODO: Add your control notification handler code here
CString m_sFrom;
for(int a=0;a < m_sFrom.GetLength(); a++)
{
if(m_sFrom.GetAt(a) == ''@'')
{
AfxMessageBox("valid");
}
else
{
AfxMessageBox("invalid");
}
}
}
现在,电子邮件ID无法验证问题是否在此语句中
for(int a = 0; a& lt; m_sFrom.GetLength(); a ++)我认为"m_sFrom.GetLength();"中存在问题……我不知道这是什么问题,请帮助我
now the email id is not validating the problem is in this statement
for(int a=0;a < m_sFrom.GetLength(); a++) i think there is problem in "m_sFrom.GetLength();"... i dono what problem it is,, pls help me
推荐答案
这篇关于MFC中验证电子邮件ID时出现问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!