关于VC环境的有关问题的(附件)

关于VC环境的问题的(附件)
我已经上传了文件;
里面有很多的 问题,就麻烦大家看看了...


------解决方案--------------------
编译正确
Deleting intermediate files and output files for project 'FastSellStore - Win32 Debug'.
--------------------Configuration: FastSellStore - Win32 Debug--------------------
Compiling resources...
Compiling...
StdAfx.cpp
d:\其他\fastsellstore\debug\msado15.tlh(409) : warning C4146: unary minus operator applied to unsigned type, result still unsigned
Compiling...
_recordset.cpp
ADOConn.cpp
adodc.cpp
column.cpp
columns.cpp
ComInfoDlg.cpp
datacombo.cpp
dataformatdisp.cpp
datagrid.cpp
datalist.cpp
excel.cpp
ExcelEditDlg.cpp
ExcelQueryDlg.cpp
FastSellStore.cpp
FastSellStoreDlg.cpp
field.cpp
fields.cpp
font.cpp
Global.cpp
ICModulClass.cpp
Generating Code...
Compiling...
LoginDlg.cpp
picture.cpp
properties.cpp
property.cpp
selbookmarks.cpp
split.cpp
splits.cpp
stddataformatsdisp.cpp
Users.cpp
Generating Code...
Linking...

FastSellStore.exe - 0 error(s), 1 warning(s)

------解决方案--------------------
TO Zhentiwei
呵呵 这个说实在的,我也不是很清楚,我只是觉得原则上,类的声明和实现应该分别放在两个文件中,并且在用到这个类的时候只包含h文件,这样便于该类被多次使用。因为头文件假如只有类的声明的话,是没有关系的,随便多包含几次都可以,但是函数实现也被放到h里并被别人包含多次后,将导致符号重定义错误。