Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
6answers
10k views

How to setup Google C++ Testing Framework (gtest) on Visual Studio 2005

It is not documented on the web site and people seems having problem setting up the framework. Can someone please show step by step introduction to a sample project setup.
12
votes
1answer
721 views

False sense of security with `snprintf_s`

MSVC's "secure" sprintf funcions have a template version that 'knows' the size of the target buffer. However, this code happily paints 567890 over the stack after the end of bytes... char bytes[5]; ...
10
votes
2answers
495 views

Why/when is __declspec( dllimport ) not needed?

In a project using a server.dll and a client.exe, I have dllexported a server symbol from the server dll, and not dllimported it into the client exe. Still, the application links, and starts, without ...
9
votes
4answers
877 views

Maximize CPU Usage

How do I maximize the CPU usage for my application? I tried setting it to "Real-time" in the Task Manager, but there was no noticeable improvement - it's stuck at 50%. I'm working in Windows XP with ...
9
votes
6answers
7k views

Capturing cout in Visual Studio 2005 output window?

I created a C++ console app and just want to capture the cout/cerr statements in the Output Window within the Visual Studio 2005 IDE. I'm sure this is just a setting that I'm missing. Can anyone point ...
6
votes
3answers
454 views

ITERATOR LIST CORRUPTED in std::string constructor

The code below compiled in Debug configuration in VS2005 SP1 shows two messages with “ITERATOR LIST CORRUPTED” notice. Code Snippet #define _SECURE_SCL 0 #define _HAS_ITERATOR_DEBUGGING 0 #include ...
6
votes
4answers
5k views

Change app icon in Visual Studio 2005?

I'd like to use a different icon for the demo version of my game, and I'm building the demo with a different build config than I do for the full verison, using a preprocessor define to lockout some ...
5
votes
5answers
3k views

Pthreads in Visual C++

I'm experimenting with multithreading in Windows and was wondering whether I should use Win32 API use POSIX Threads for Windows Learning Pthreads would be useful if I tried to develop such ...
5
votes
1answer
753 views

Can you make Visual Studio 2005 provide command line arguments for your startup program?

For testing purposes, is there some place in the Visual Studio IDE where you can specify the command line parameters that you want sent to your startup project when it's launched from the IDE? Thanks ...
5
votes
4answers
5k views

Setting file version number in Visual Studio 2005 C++

Can anyone point me in the right direction how to configure Visual Studio 2005 with our C++ console project how we can include a 'File Version' in the details section of the file properties. I've ...
4
votes
3answers
386 views

Make it tell me what is out of date in Visual C++ 2005 project

I have a 100+ source file VC++ project in Visual Studio 2005. A lot of those files have custom build steps. There is something that is not updated when I build. Every time I hit the start debug ...
4
votes
2answers
814 views

C++ Project dependencies issue Visual studio 2005

I am working on a dataManagement project that periodically deletes files in a specific folder. The solution has three projects of which, one is the application and the other two are static libraries. ...
4
votes
3answers
2k views

How to get a full call stack in Visual Studio 2005?

How can I get a full call stack for a c++ application developed with Visual Studio 2005? I would like to have a full call stack including the code in the system libraries. Do I have to change some ...
3
votes
2answers
121 views

Adding projects to a visual studio c++ solution via a script

I usually work on multi-project solutions in visual studio. Since the solutions themselves are not stored in the repository, I spend some time adding in the various projects via visual studio(from a ...
3
votes
1answer
299 views

Add the upper and lower 64-bits of a 128-bit xmm register

I have two packed quadword integers in xmm0 and I need to add them together and store the result in a memory location. I can guarantee that the value of the each integer is less than 2^15. Right now, ...
3
votes
11answers
1k views

Find largest and second largest element in a range

How do I find the above without removing the largest element and searching again? Is there a more efficient way to do this? It does not matter if the these elements are duplicates.
3
votes
13answers
1k views

Function which returns an unknown type

class Test { public: SOMETHING DoIt(int a) { float FLOAT = 1.2; int INT = 2; char CHAR = 'a'; switch(a) { case 1: return INT; case 2: return FLOAT; case 3: return CHAR; } } }; ...
3
votes
4answers
413 views

Is there a good C++ crash reporting library that works well with Visual Studio 2005?

After reading this previous discussion and this one, it looked as though Crashrpt was exactly what I was looking for, but it seems it's no longer being maintained and, after playing with it, found it ...
2
votes
3answers
187 views

How do I let a program D read a memory location within the memory allocated to a program A?

So I'd like to let read D read this memory location and do some work on it. Any thoughts? Is writing a debugger extension the only way - if so, any recommendations? I considered executing a memory ...
2
votes
1answer
374 views

SSE2 Compiler Error

I'm trying to break into SSE2 and tried the following example program: #include "stdafx.h" #include <emmintrin.h> int main(int argc, char* argv[]) { __declspec(align(16)) long mul; // ...
2
votes
3answers
635 views

OpenMP: Causes for heap corruption, anyone?

EDIT: I can run the same program twice, simultaneously without any problem - how can I duplicate this with OpenMP or with some other method? This is the basic framework of the problem. //Defined ...
2
votes
3answers
586 views

Profiler for Visual C++ 2005

Any recommendations for gratis (i.e. free as in free beer) profilers which can be integrated with Visual C++ 2005? I'm using Very Sleepy right now (which is really nice), but wouldn't mind shifting if ...
2
votes
5answers
1k views

creating a DLL in Visual Studio 2005

I am developing a C++ library that I want to pass on to my team. The library has just one class with a bunch of methods. So, I have developed the class definition file (X.cpp) and a corresponding ...
2
votes
3answers
1k views

Checking if Registry Value exists Visual C++ 2005

Im trying to code a Visual C++ 2005 routine that checks the registry for certain keys/values. I have no trouble in writing code using c# but I need it in C++. Anybody know how to do this using c++ in ...
2
votes
3answers
1k views

Visual Studio 2005: static text control won't display with transparent background

I'm using the Dialog editor in Visual Studio 2005 to create a Dialog box with a static text control. I'd like the background of the static text control to be transparent since I'm using an static ...
2
votes
1answer
175 views

BEGIN_MSG_MAP_EX breaks Visual Studio 2005 intellisense?

I have a C++ application using WTL/ATL BEGIN_MSG_MAP_EX macros for message handling. I use some macros from atlcrack.h. When we upgraded the projects to Visual Studio 2005, intellisense acts crazy. ...
2
votes
3answers
2k views

Ant -> Nant -> Visual Studio 2005 Build

I am working on a big C++ project. It is building using single Ant script which makes possible to compile the same source targeting more than one platform and compiler. But, I have to work only for ...
2
votes
7answers
1k views

invoking functions while debugging with Visual Studio 2005?

Here's something I know is probably possible but I've never managed to do In VS2005(C++), While debugging, to be able to invoke a function from the code which I'm debugging. This feature is sometimes ...
2
votes
4answers
3k views

Linker Errors C++ Visual Studio 2005

I'm getting a whole bunch of linker errors in Visual studios for methods I'm not even calling directly. I'm a java developer by day, but I have a project I need to do in C++, intended to run on ...
2
votes
3answers
332 views

What's a quick way to trace the entry and exit of functions in a Visual Studio 2005 c++ multithreaded program?

I have intermittent crashes occurring in my ActiveMQ libraries due to the way I'm using the activemq-cpp API. It'd be much easier to debug the issue if I could observe every function being called ...
1
vote
1answer
154 views

STL lower_bound not spec compliant

The following code doesn't compile in C++Builder 2009 or in Visual C++ 2005 when the macro _HAS_ITERATOR_DEBUGGING equals 1 but if commented out it will. It appears the lower_bound function isn't spec ...
1
vote
0answers
90 views

How to add dependency's $(ProjectDir) to dependent project's include directories?

I have 100+ projects in solution. For each project, its public headers are located in its project directory. So I want to not keep large lists of include folders for each project, but force VS to do ...
1
vote
3answers
395 views

array of wchar_t

I would like to have an array of wchar_t's. The following works: char** stringArray; int maxWords = 3; stringArray = new char*[maxWords]; stringArray[0] = "I"; stringArray[1] = " Love "; ...
1
vote
0answers
213 views

Upgrading project from Visual C++ 2005 to 2010: Error '_Secure_char_traits_tag' : is not a member of 'std'

I am trying to upgrade a project from Visual C++ 2005 to Visual C++ 2010. This project have been not been worked on for the past 5 years, so I assume there is a lot of things I need to fix before it ...
1
vote
2answers
289 views

TCP/IP Sockets API Book

I have recently bought this book to get to know some basics about building networking sockets under windows. I'm having problems with compiling the code written in this book for example - in first ...
1
vote
3answers
88 views

QT: How Can I build QT under Microsoft Visual C .NET 2005

I need to build and use QT within Microsoft visual C 2005 project. Is it possible to do that and how to?
1
vote
2answers
66 views

Strange linkage problem with Visual C++ 2005

please help me, I have a strange problem which i can't sort out in any way. Premise: I'm using visual c++ 2005 on windows 7 x64, and I'm sure that my code isn't fatally flawed because with g++ under ...
1
vote
2answers
103 views

template expressions and visual studio 2005 c++

I'd like to build the olb3d library with my visual studio 2005 compiler but this failes due to template errors. To be more specific, the following expression seem to be a problem: void function(T ...
1
vote
3answers
224 views

MFC: 'Gluing' two windows/dialogs together

I'm trying to set something up so my main dialog has one or more child dialogs, and these are glued/docked to the outside of the main dialog - when the main dialog is minimised, the children are too, ...
1
vote
2answers
369 views

Local classes inside inline non-member function produces LNK2005 with MSVC2005

Apparently, MSVC2005 fails to inline local classes' member functions which leads to LNK2005. I'm facing this LNK2005 error when compiling the following: common.h content: inline void wait_what() { ...
1
vote
3answers
119 views

Which version of boost should I use with c++ visual-studio-2005?

Does anyone know what version of the Boost Library to use with Visual Studio 2005?
1
vote
4answers
381 views

Including header files in Visual Studio

Suppose I have a solution with 3 projects X,Y, and E. E will generate an executable and X and Y will generate static libraries such that Y includes the header files of X and E includes the header ...
1
vote
1answer
191 views

Preventing a complete rebuild using branches with GIT and Visual Studio 2005

One of the problem I faced when using branches in GIT was that it was very easy when switching branches to cause visual studio 2005 to cause a complete rebuild of the source because of the time/date ...
1
vote
4answers
941 views

Matrix Circular Shift

Does anyone know an efficient way to right circular-shift a matrix? Btw, the matrix is binary but a method to solve a non-binary matrix is also fine. Right now, I'm thinking of implementing a ...
1
vote
5answers
1k views

Unrolling small loops with Visual Studio 2005

How do you tell the compiler to unroll loops based on the number of iterations or some other attribute? Or, how do you turn on loop unrolling optimization in Visual Studio 2005? EDIT: E.g. //Code ...
1
vote
4answers
986 views

MATLAB functions in C++

Does anyone know a resource where we can obtain FREE C++ libraries for MATLAB functions? For example, linear algebra problems can be solved using LAPACK and BLAS. Also, MATLAB in a .NET project is ...
1
vote
3answers
1k views

Does the latest Visual Studio 2005 Security Update cause C runtime library issues when hot fixing customer sites

As you might be aware an update to visual studio 2005 was auto updated on most machines last week. This update included a new version of the visual c runtime library. As a result any binaries built ...
1
vote
5answers
2k views

Create Microsoft Word document from C++ in Visual Studio 2005

We got a homework assignment to create a Microsoft Word document using Visual Studio 2005 and C++. Could anyone explain how this could be done. I was trying to do it using VSTO, but I've had no luck. ...
1
vote
5answers
486 views

Visual Studio 2005 C++ Compiler slower that Visual Studio 6 Compiler?

One of our old C++ projects is still with Visual Studio 6. Once a year I try to convert it in to a higher Visual Studio Version but it's not easy because not all the code is written by us. Anyway, I ...
1
vote
2answers
1k views

Visual Studio 2005 (C++) default warning level

I'm working on a new development in C++, using MS Visual Studio 2005. For this, I need to add several new projects to my solution. I always set my warning level to 4, and turn on "treat warnings as ...

1 2