CLoginDlg dlg1;
CString str;
m_pMainWnd->ShowWindow(SW_HIDE);
{
if(dlg1.DoModal()==IDOK)
{
CString sqlstr;
sqlstr.Format("select * from Login where LoginName='%s' and LoginPassword='%s'",dlg1.m_strUser,dlg1.m_strPass);
if(GetRecord(sqlstr)==0)
{
AfxMessageBox("沒有該用戶!");
return true;
}
// LoginName=dlg1.m_strUser;
str=(LPCSTR)(_bstr_t)m_record->Fields->GetItem("Remark")->Value;
str.TrimRight();
}
else return true;
}
if(str!="用戶")
{
CUserDlg dlg;
dlg.DoModal();
m_pMainWnd->ShowWindow(SW_HIDE);
}
else
{
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
m_pMainWnd->SetWindowText("賓館管理系統");
}
::CoUninitialize();
return TRUE;
if(GetRecord(sqlstr)==0)
{
AfxMessageBox("沒有該用戶!");
m_pMainWnd->ShowWindow(SW_SHOW);
return true;
}
因為程序 return 了,沒有執行窗體顯示的代碼。