2009-08-18 73 views
1

我試圖建立http://chitchat.at.infoseek.co.jp/vmware/vfd.html(VS 2008,Windows Server 2008的64位),但是,我發現了以下錯誤消息:獲取編譯錯誤:0X2試圖打開文件<vfdmsg>

Error 1 error : 0x2 trying to open file <vfdmsg>. mc lib 
Error 2 error PRJ0019: A tool returned an error code from "Compiling Message - L:\src\lib\vfdmsg.mc" lib lib 
Error 3 error : 0x2 trying to open file <vfdmsg>. mc cmd 
Error 4 error PRJ0019: A tool returned an error code from "Compiling Message - L:\src\cmd\vfdmsg.mc" cmd cmd 
Error 5 error : 0x2 trying to open file <vfdmsg>. mc gui 
Error 6 error PRJ0019: A tool returned an error code from "Compiling Message - L:\src\gui\vfdmsg.mc" gui gui 

我有安裝了Windows 2008 SDK,我已經搜索了一段時間,但我不能爲我的生活弄清楚這個錯誤的含義。誰能幫忙?

回答

3

我已經注意到這個固定的,對於vfdmsg.mc構建步驟是:

mc $(InputName) 

其中$(InputName)解析爲vfdmsg,不vfdmsg.mc

通過更換這個固定以下構建步驟:

mc $(InputFileName) 
相關問題