Tagged Questions
The msvs tag has no wiki summary.
4
votes
2answers
628 views
Redistributable compiler - DLLs for MS Visual Studio
I'm making a programming learning game for my senior project and I'm looking for a compiler that can compile a DLL that can then be dynamically loaded into a Visual Studio 2008 C++ application.
The ...
3
votes
3answers
129 views
Order of evaluation of arguments using std::cout
Hi all I stumbled upon this piece of code today and I am confused as to what exactly happens and more particular in what order :
Code :
#include <iostream>
bool foo(double & m)
{
m ...
3
votes
2answers
1k views
C++ memory alignment question
A line of code is worth a thousand words :) Here is my problem:
/* Platform specific 16-byte alignment macro switch.
On Visual C++ it would substitute __declspec(align(16)).
On GCC it ...
2
votes
1answer
563 views
Best practice to share projects between solution trees (MSVS 2008 & MSVS 2010)
We have 50+ projects divided into 2 solution trees managed by TFS (Version: Visual Studio 2008 / TFS RTM (9.0.21022.8)).
30+ projects are Visual Studio 2008 projects and others are Visual Studio ...
2
votes
1answer
297 views
TestContext is null
Pretty simple test:
[TestClass]
public class MyTestClass
{
private TestContext _testContext;
protected TestContext TestContext
{
get { return _testContext; }
set { ...
2
votes
1answer
145 views
Can Visual Studio manage function prototypes for me in C++ header files?
In C++, the common practice is to declare functions in header files and define them in cpp files. This leads to always having two copies of every function's prototype. Then whenever I want to change a ...
1
vote
0answers
60 views
C++ MSVS, what file “cleanup” should I be doing? (cl error: D8037)
Working in C++ MSVS2008, I've been having increasingly irritating problems: Breakpoints executing on the wrong line, not catching, etc. It's a really large workspace with thousands of files, so I ...
1
vote
2answers
256 views
How to force Qt Creator to use MinGW instead of Visual Studio
We're trying to compile a project with MinGW on the machine that has both MinGW (with Qt) and Visual Studio installed. Unfortunately, Qt creator prefers MSVS by default, and doesn't see it's very own ...
1
vote
1answer
43 views
subject: rebuild old c++ dll, Visual Studio? Or what?
Folks:
I need a 8051 processor instruction + internal peripheral simulator to resurrect a very old project. (Long story.) I found an WinXP-targeted abandonware project that is almost perfect for my ...
1
vote
2answers
308 views
Extract file name from full path in C using MSVS2005
In a C program, I have a file path in a string (specifically, this is the exe name stored in argv[0]). I would like to extract the file name and discard the directory path using MS Visual Studio 2005. ...
1
vote
3answers
670 views
Why do I get LNK4098 conflicts with use of other libs - when trying to compile C++ in MSVS2010 Express?
My program will not successfully compile in /MT (MultiThreaded) mode. It Compiles in /MD (MultiThreaded DLL). I want to be able to use both libcurl and boost in an application I will distribute with ...
1
vote
1answer
80 views
MSVS solution file generator?
I'm looking for a simple tool, that accepts a path, scans folders, and creates a solution (sln) file with all the projects found.
Setting project dependencies automatically would be a big plus for ...
1
vote
2answers
630 views
What flags do you recommend for release configuration in MSVC project
I am reviewing the flags we have for our MSVC projects, and I can't get enough documentation on the following features:
Use Link Time Code Generation (/ltcg)
enable function level linking (/Gy)
...
0
votes
1answer
122 views
How to build Google breakpad on Windows with Qt Creator (gcc/MinGW)?
Given: Application project written for Qt Creator (4.7.4, Win32 only, gcc/MinGW).
Needed: Plug in well-known Google breakpad library to gather verbose crash dumps from customers.
My current ...
0
votes
1answer
74 views
When/Why should I move to MSVS2010 (from MSVS2008)? [closed]
Possible Duplicate:
What's the compelling reason to upgrade to Visual Studio 2010 from VS2008?
We have large C++ code bases developed on MSVS2003, 2005, 2008. Our current "reference" ...
0
votes
0answers
23 views
How can I license MSVS created Office Add-Ins?
I've created an Outlook 2007 Add-In using MS Visual Studio 2010.
I want to charge for its' use.
How can I license MSVS created Office Add-Ins?
I can publish it and its dependencies (/publish folder).
...
0
votes
1answer
242 views
C++: 'adding references' to namespaces (and class libraries)?
I'm curious about adding references through the "Property Pages" dialog in Visual Studio C++. Specifically adding 'class libraries' and, even more so, 'namespaces'.
In what I'm reading it says that ...
0
votes
2answers
79 views
Compiler Error for unknown reasons (C++)
I get a compiler error (C2061) in MSVS C++ 2010 IDE, when I try to compile. I simply got no clue as to why it occurs, as I can see no apparant error.
#pragma once
#ifndef _CCOMPONENT_H
#define ...
0
votes
0answers
375 views
Sharing violation during pre-build causes MSB3073
Has anyone had a problem with MSVS2010 during building c# project using pre-build step? I have two projects in a solution. One has a pre-build step which uses xcopy to copy some files. The former is a ...
0
votes
1answer
17 views
Regex Find and Replace in MSVS 2008
I have a function I want to replace in this manner
myDictionary.Add("variable_key", "constant_value");
After replace, I want it to become
myDictionary.Add("variable_key", variable_key);
I tried to ...
-2
votes
1answer
71 views
Overloading with similar conversions
Given these two functions :
bool logMessage(LogType_E, unsigned int, int, const char *, ...); //!< Log message with parameters
bool logMessage(LogType_E, int, const char *, ...); //!< Logs ...