Tagged Questions

5
votes
6answers
581 views

VS2008: Can I build a project with 2 CPP files of the same name in different folders?

Here is my folder structure: / | -- program.cpp -- utility.h -- utility.cpp | -- module/ | -- utility.h -- utility.cpp // Note that I have two files named utility.h and two named ...
2
votes
0answers
44 views

Disable C++ warning at project level?

I know you can use a #pragma to disable a warning in a specific file, but I want to "turn off" a certain warning for a whole VC++ 2008 project. I found an option Configuration ...
2
votes
4answers
833 views

How to call VB.NET DLL from C++ (Call the functions also - not DLL file only)

I want to ask question about how to call VB.NET DLL from C++ program I have tried many times to call VB.NET DLL file from C++ and it is working fine but the problem is I can't call the function of ...
2
votes
1answer
1k views

How to solve problem “ mt.exe : general error c101008d”?

I often have this problem even when I build a new C++ project and try to build a release file. I use Visual studio 2008. One thing that may cause this problem is my code is saved on the server disk, ...
2
votes
1answer
96 views

Organisation of compiler dependency paths to external libraries

I my current team we organize the dependencies to external libraries headers in the project settings like that: Compiler Settings->Additional Includes: d:\src\lib\boost_1_43 d:\src\lib\CxImage_6_00 ...
2
votes
1answer
177 views

Using Custom Enum in a VC++9 project causes a compilation error

I am working in a migration project from VC++6 to VC++9. I am using Custom Enum in a VC++9 project causes a compilation error as it is duplicating with mfc base class winuser.h. Sample code:- enum ...
2
votes
3answers
257 views

VS 2008 irritating copy constructor link dependency

I've run into the following annoying and seemingly incorrect behaviour in the Visual Studio 2008 C++ compiler: Suppose I have a class library - Car.lib - that uses a "Car" class, with a header called ...
1
vote
1answer
32 views

View integer on memory locations allocated as char in Visual C++ 2008 debugger

I'm using Visual C++ 2008 to write and debug my project. I have a char* pointer. I want to view 4 bytes starting at my pointer as an integer in the debugger. How do I do it? (int)(*pointer) comes to ...
1
vote
1answer
70 views

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 changes, I need to compare the variables to see what is ...
1
vote
1answer
163 views

How to get __declspec(thread) working on Windows CE

I have a class containing: class SomeClass { SomeClass *previous; static __declspec(thread) SomeClass *stackTop; public: SomeClass() : previous(stackTop) { stackTop = this; } ...
1
vote
1answer
145 views

Problem with refreshing the status of files with VisualSVN and AnkhSVN

We use VisualSVN Server as our Version Control server. We integrated TortoiseSVN into Visual C++ 2008 using VisualSVN. Now, I want to see if a file is locked by another user. When I press the ...
1
vote
2answers
488 views

Adding Preprocessor directive dynamically from commandline build VS2008

I am using VS2008, and developing C/C++ projects. I am using .bat file to build my projects from commandline (VC2k8 command prompt). I need a way to include preprossor directive dynamically at build ...
1
vote
2answers
387 views

How to determine which C/C++ objects use most memory

I have a mixed mode application (managed and native) which has a high memory footprint. I already have found out that most of the memory is allocated by native code. I am not talking about a memory ...
1
vote
3answers
366 views

How do I increase the allowed decorated name length in VC9 (MSVC 2008)?

I have a rather large and complex set of programs to port from VC8 to VC9. One of the modules has a number of layered typedefs, which cause the compiler to generate a C4503 warning (decorated name ...
0
votes
0answers
52 views

Visual C++ Code Generation

How to create a VC++ project(preferably Smart Device Project) using C# Code generation. //Create the solution solution = (Solution2)targetApplication.Solution; solution.Create(solutionPath, ...
0
votes
1answer
69 views

conversion from visual c++ 2008 to visual c++ 6.0

I need some help regarding my project. I have a project which is Micrsosoft Visual c++ 2008 and i want to convert it in visual c++ 6.0. Is there any converter available which convert from visual c++ ...
0
votes
0answers
55 views

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). A part of classes in project 1 are declared and implemented but never used in code ...
0
votes
1answer
61 views

vc9 error 4430 on one machine, not on the other

Compiling the same code on two different machines. We have int functions that are not explicitly defined as such in the CPP file. One machine compiles fine, the other doesn't. What's really weird is ...
0
votes
4answers
635 views

Migrating from Visual C++ 6 to Visual C++ 2008 express

I'm tring to migrate my code from VCpp 6 to VCpp 2008 express but when I build the solution I receive this error message: icl: warning: problem with Microsoft compilation of ...