...我编写的一个程序编译时出现这种错误:
Deleting intermediate files and output files for project ’DAS - Win32 Debug’.
--------------------Configuration: DAS - Win32 Debug--------------------
Compiling resources...
Compiling...
StdAfx.cpp
Compiling...
DAS.cpp
DASDoc.cpp
DASView.cpp
FormsView.cpp
GraphView.cpp
IDD_DIALOG_FORMVIEW.cpp
d:\vc\msdev98\myprojects\das\idd_dialog_formview.h(13) : error C2143: syntax error : missing ’;’ before ’constant’
d:\vc\msdev98\myprojects\das\idd_dialog_formview.h(13) : fatal error C1004: unexpected end of file found
LeftTreeCtrl.cpp
LeftTreeView.cpp
MainFrm.cpp
mscomm.cpp
SpreadSheet.cpp
Generating Code...
Error executing cl.exe.
Creating browse info file...
BSCMAKE: error BK1506 : cannot open file ’.\Debug\IDD_DIALOG_FORMVIEW.sbr’: No such file or directory
Error executing bscmake.exe.
DAS.exe - 3 error(s), 0 warning(s)
出问题的文件如下:
#if !defined(AFX_IDD_DIALOG_FORMVIEW_H__EE217CC3_E679_447D_A544_7F871A3D9F9B__INCLUDED_)
#define AFX_IDD_DIALOG_FORMVIEW_H__EE217CC3_E679_447D_A544_7F871A3D9F9B__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// IDD_DIALOG_FORMVIEW.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// IDD_DIALOG_FORMVIEW dialog
#include "resource.h"
class IDD_DIALOG_FORMVIEW : public CDialog
{
// Construction
public:
IDD_DIALOG_FORMVIEW(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(IDD_DIALOG_FORMVIEW)
enum { IDD = IDD_DIALOG1 };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(IDD_DIALOG_FORMVIEW)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(IDD_DIALOG_FORMVIEW)
// NOTE: the ClassWizard will add member functions here
virtual BOOL OnInitDialog();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_IDD_DIALOG_FORMVIEW_H__EE217CC3_E679_447D_A544_7F871A3D9F9B__INCLUDED_)
请教各位大侠,这种问题怎么处理啊?急!