登陆页面的按钮执行下列消息:
UpdateData();
CString str;
m_comboYHLX2.GetLBText(m_comboYHLX2.GetCurSel(),str); //获取下拉列表框中的文本信息
if(m_strYHM2.IsEmpty())
{
AfxMessageBox("用户名不能为空");
return;
}
if(m_strMIMA2.IsEmpty())
{
AfxMessageBox("密码不能为空");
return;
}
CString sql="select*from zhuce where USENAME='"+m_strYHM2+"' and [PASSD]='"+m_strMIMA2+"' and USETYPE='"+str+"'";
try
{
_RecordsetPtr m_pRs;
ADOConn m_AdoConn;
m_AdoConn.OnInitADOConn();
m_pRs=m_AdoConn.GetRecordSet((_bstr_t)sql);
if(m_pRs->adoEOF)
{
sql="select*from zhuce where USENAME='"+m_strYHM2+"'";
m_pRs=m_AdoConn.GetRecordSet((_bstr_t)sql);
if(!m_pRs->adoEOF)
{
if(m_strMIMA2!=(char*)(_bstr_t)m_pRs->GetCollect("PASSD"))
{
if(MessageBox("密码错误,是否找回密码?","提示",MB_YESNO)==IDYES)
{
CFIND dlg;
dlg.Name=m_strYHM2;
CDialog::OnCancel();
dlg.DoModal();
}
}
else
{
if(str!=(char*)(_bstr_t)m_pRs->GetCollect("USETYPE"))
{
AfxMessageBox("权限错误");
return;
}
}
}
else
{
if(MessageBox("用户名不存在,是否注册?","提示",MB_YESNO)==IDYES)
{
CDialog::OnCancel();
CDMT2 dlg;
dlg.m_strYHM2=m_strYHM2;
dlg.DoModal();
}
else
CDialog::OnCancel();
}
}
else
{
if(str=="教职工")
{
CDialog::OnCancel();
//CBack dlg;
//dlg.DoModal();
}
else
CDialog::OnOK();
}
m_AdoConn.ExitConn();
}
catch(...)
{
AfxMessageBox("操作失败");
return;
}
}
当消息执行完后,我要调用下一对话框,
1:不知道怎样加代码?
2:加在什么地方?
二:有没有可以通过void OnOk();实现?
三:假设上述代码是A对话框中“确定”按钮,在调用C对话框之前要先要自动弹出B对话框,怎么办?