New Post: How to deal with predefined macro such as _MSC_VER when working...
Thx and I can see it is 1200 even though VC2010 IDE's IntelliSense displays it as 1600 and make the code surrounded by "#if _MSC_VER==1200" inactive. This little inconvenience is unavoidable as long as...
View ArticleNew Post: How to deal with predefined macro such as _MSC_VER when working...
Offhand I don't see any solution short of defining _MSC_VER explicitly in your project settings. This would make a good bug report for Microsoft.
View ArticleNew Post: How to deal with predefined macro such as _MSC_VER when working...
Hi I just added the following lines to my stdafx.h #if defined(_MSC_VER) #undef _MSC_VER #define _MSC_VER 1200 #endif With this, the IntelliSense now recognize the "#if _MSC_VER==1200 ... #endif" block...
View ArticleNew Post: Daffodil source xml has unreadable characters?
Just downloaded the Daffodil source files and found that most of the xml files have unreadable characters. For example, cl.xml from vc60 (1028)<!--Copyright, Microsoft Corporation, All rights...
View ArticleNew Post: How to deal with predefined macro such as _MSC_VER when working...
If you're going to set _MSC_VER in the same source file that tests its value, you defeat the purpose of using it. In that case you might as well remove the preprocessor conditions altogether.There is...
View ArticleNew Post: Daffodil source xml has unreadable characters?
That is the Chinese file. You can probably read the English version better. English is LCID 1033.
View ArticleNew Post: Daffodil and Visual C++ 2003 Toolkit
Is it sufficent to have the Visual C++ 2003 Toolkit installed (comand line compiler) or do I need to have full Visual Studio 2003I can't build my project with the option vs71 at the moment.
View ArticleNew Post: Daffodil and Visual C++ 2003 Toolkit
I doubt that VC Toolkit 2003 includes all the needed tools, but I've never tried it.
View ArticleNew Post: vc6,vc7 can not link if the $(OutDir) is not english?
I found a question,vc8\vc9 work great, but vc6,vc7 can not link if the $(OutDir) is not english?LINK : fatal error LNK1104: 无法打开文件“..\..\???\**.dll"It makes ???
View ArticleNew Post: vc6,vc7 can not link if the $(OutDir) is not english?
Early versions of VC specify arguments via ANSI (UTF-7) response files, so your path and any other build tool arguments must be only ANSI characters for those versions.
View ArticleNew Post: Things to consider?
Hi Owen,I have a large legacy project which is in VC6, I'm trying to avoid a full blown move to VS2010 due to the time cost. Since I'm rather new to multitargeting I wonder what should I consider while...
View ArticleNew Post: Things to consider?
Odds are reasonably good that it will just work. You just need to make sure both VC6 and VS 2010 are installed and functioning on the development machine, and that all referenced external files or...
View ArticleNew Post: Things to consider?
Is there any specific instruction set. I'm rather new to all of this VC6 stuff. It would be nice to have a more detailed guide. There are two reason I want to do this:A) VC6 doesn't operate smoothly on...
View ArticleNew Post: Things to consider?
You'll need the VC6 build tools to run smoothly. If you're having trouble with the IDE, that shouldn't matter.There aren't any specific instructions. Try building your project in VS 2010 with the...
View ArticleNew Post: Error Debugging vector and/or Map
I can't debbug values of vectors and maps (VC6). The intelliSence writes the follow message when I position the cursor above those objects: - vector: Recognize two error members, like this:(error)...
View ArticleNew Post: Error Debugging vector and/or Map
I think you are confusing Intellisense and Debugger DataTips.I just did a quick test in a VC6 project built in VS 2010, and the VS 2010 debugger shows the members of std::vector correctly in the...
View ArticleNew Post: Error Debugging vector and/or Map
Thanks for your answer.I have Visual Studio 6 Service pack 6.I created a new VC++ Empty Project in VS2010, add the cpp file:#include <VECTOR>using namespace std;void main(){ vector<int>...
View ArticleNew Post: Error Debugging vector and/or Map
I see now the problem. I tested originally on a 64-bit system, where the vector displayed it's actual members instead of the customized inspector defined in autoexp.dat (I'm not sure why my autoexp.dat...
View ArticleNew Post: How to config Daffodil with Windows® Server 2003 SP1 Platform SDK...
Currently , i can use Visual Studio 6.0 and Windows® Server 2003 SP1 Platform SDK to build x64 application which depend on MFC42.dll (x64)by follow steps:open【start】 【Microsoft Platform SDK for...
View Article