missing function header (old-style formal list?)

[复制链接]
查看11 | 回复1 | 2010-6-29 22:27:28 | 显示全部楼层 |阅读模式
{BOOL CStudentScoreApp::InitInstance()
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
//of your final executable, you should remove from the following
//the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T("Local AppWizard-Generated Applications"));
LoadStdProfileSettings();// Load standard INI file options (including MRU)
// Register the application's document templates.Document templates
//serve as the connection between documents, frame windows and views.
CLoginDlg login;
if(login.DoModal()==IDOK)
{
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINFRAME,
RUNTIME_CLASS(CStudentScoreDoc),
RUNTIME_CLASS(CMainFrame),
// main SDI frame window
RUNTIME_CLASS(CStudentScoreView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands, DDE, file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized, so show and update it.
//m_pMainWnd->ShowWindow(SW_SHOW);
//m_pMainWnd->UpdateWindow();
CMenu*pMenu=m_pMainWnd->GetActiveWindow()->GetMenu();
if(login.m_userlevel=='1')
{pMenu->EnableMenuItem(ID_USER,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_STUDENT,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_TEACHER,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_COURSE,MF_DISABLED|MF_GRAYED);
}
else if(login.m_userlevel=='2')
{pMenu->EnableMenuItem(ID_USER,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_STUDENT,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_TEACHER,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_COURSE,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_TEACH,MF_DISABLED|MF_GRAYED);
pMenu->EnableMenuItem(ID_SCORE,MF_DISABLED|MF_GRAYED);
}
m_pMainWnd->ShowWindow(SW_SHOWMAXIMIZED);
m_pMainWnd->SetWindowText("学生成绩管理信息系统");
m_pMainWnd->UpdateWindow();
return TRUE;
}
else
{
return false;
}
}
这哪里错了啊。。。。。。。大家帮帮忙啊
如果说缺少头文件 应该加什么 请详细说明
他错误的指针是指向第一行的

回复

使用道具 举报

千问 | 2010-6-29 22:27:28 | 显示全部楼层
#define DF(N) void N(){ cout << "function " #N " called..." << endl; } //以上只能是一牌。DF(a); DF(b); DF(c); DF(d); DF(e) ; DF(f); DF(g); void (*func_table[])() = {a,b,c,d,e,f,g}; int main...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行