visual-c++-2008
Visual C++ (2008) debugging snapshot
Sometimes I need to keep track of several lines of code where variable values change on the object I am interested in. When the object ch开发者_如何转开发anges, I need to compare the variables to see[详细]
2023-03-15 03:50 分类:问答Why do I see a MSVCR90 dependency even though I set the /MT option?
I\'m building a DLL in Visual C++ 2008, and I want to have the runtime statically linked into the DLL.So I went into the project opt开发者_高级运维ions and set Runtime Library to Multi-threaded (/MT).[详细]
2023-03-14 01:14 分类:问答How to avoid stepping into 3rd party code in Visual Studio
I am working with fairly complex code that is working with several 3rd part libraries. When I want to keep on stepping over (F10) I sometimes end up in 3rd party assembly code. If I deselect the optio[详细]
2023-03-12 06:44 分类:问答conversion from visual c++ 2008 to visual c++ 6.0
I need some help regarding my project. I have a project 开发者_StackOverflow社区which is Micrsosoft Visual c++ 2008 and i want to convert it in visual c++ 6.0.[详细]
2023-03-11 12:34 分类:问答VC++ move borderless form
i\'m totally new to开发者_如何学Go C++, but anyway, how to move a borderless form (this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::None;)?[详细]
2023-03-06 08:19 分类:问答Compiler warning when switching on an enum
enum ENUM(Option1,Option2,Option3); string func(ENUM x) { switch(x) { case Option1: return \"Option1\"; case Option2: return \"Option2\";[详细]
2023-03-03 17:43 分类:问答To declare a CString function inside a header file
How to properly declare this function inside this header file? CString ExecuteExternalProgram(CString pictureName);[详细]
2023-03-01 09:29 分类:问答Three levels of project dependencies cause not everything to be linked in VC++ 2008
1) Solution contains two projects. Project 2 depends on project 1(checked in \"Project Dependencies\" checkbox group).[详细]
2023-02-25 10:26 分类:问答std:map iterator returns badptr on find
I have my std::map defined as typedef std::map<string,ImageData*> ImageDataMap; typedef std::pai开发者_开发技巧r<string,ImageData*> ImageDataPair;[详细]
2023-02-21 18:42 分类:问答How to set more strict compiling rules in VC when compile C++ template code
guys, I want VC has the same strict compile rules as GCC when it compiles the c++ template code. But I don\'t know how to set this in my VC9.0 (Visual Studio 2008).[详细]
2023-02-20 12:10 分类:问答