下面是出错的信息,高手帮忙看一下!
--------------------Configuration: CAD - Win32 Debug--------------------
Making help file...
hlp\CAD.hpj(1) : error:
Microsoft (R) Help Compiler
HCRTF 4.03.0002
Copyright (c) Microsoft Corp 1990 - 1995. All rights reserved.
cad.hpj
    HC5011: Error: cad.hpj : 
 Cannot open the file "E:\Microsoft Visual Studio Service Pack 6\MFC\include\afxhelp.hm."
Linking...
LINK : fatal error LNK1104: cannot open file "E:\Microsoft.obj"
执行 link.exe 时出错.CAD.exe - 1 error(s), 0 warning(s)

解决方案 »

  1.   

    把Debug文件夹全部删掉
    然后all building
    看行不行
      

  2.   

    参考这个网址:http://www.codeguru.com/forum/showthread.php?s=&threadid=285728You have two choices: 
    One to correct problem manually by editing #include line in your cad.hpj   .
    Help Workshop does not use the INCLUDE environment variable to search for files. You have to specify full path.
    It should look like this:#include <C:\Microsoft Visual Studio\VC98\MFC\include\afxhelp.hm> 
    unless you have changed install defaults.Second choice would be checking registry:
    HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\General
    This contains a MFCPath32Bit key with value set to a MFC folder path, something like this:C:\Program Files\Microsoft Visual Studio\VC98\MFCAgain if you have changed install defaults you would have to adjust path appropriately. 
     我也刚解决这个问题,祝你好运!