Tagged Questions
11
votes
2answers
256 views
Are there any side-effects of using macro _BIND_TO_CURRENT_VCLIBS_VERSION?
We are porting a VC++ project from Visual Studio 2003 to Visual Studio 2008 SP1(9.0.30729.4148). The dependent external libraries are also
compiled with Visual Studio 2008 SP1.
MainApp - Main ...
10
votes
3answers
280 views
VC++ allows to use const types for STL containers. Why?
STL containers require the stored values to be copy constructible and assignable. const T is obviously not an assignable type for any T, but I tried to use it (just being curious) and found out that ...
6
votes
3answers
455 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 ...
5
votes
1answer
84 views
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 options and set Runtime Library to Multi-threaded (/MT). This has ...
5
votes
6answers
590 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 ...
3
votes
1answer
428 views
Install the Boost library in Visual C++ 2008
I have downloaded Visual C++ 2008 and I also have the Boost library, v. 1.44.0. How to can the Boost library be installed in C++?
I also have Visual C++ 2010.
3
votes
2answers
1k views
std::make_shared as a default argument does not compile
In Visual C++ (2008 and 2010), the following code does not compile with the following error:
#include <memory>
void Foo( std::shared_ptr< int > test = ::std::make_shared< int >( ...
3
votes
2answers
295 views
extern “C” has no effect in msvc++ 9.0
I manage project for JNI for both compilers: MSVC++ 8.0 and 9.0,
my cpp file contains following implementation:
extern "C" {
JNIEXPORT jlong JNICALL ...
3
votes
2answers
341 views
Why are my Visual C++ 2008 x64 builds 5x slower than x86 builds?
I've been trying to improve the build times for my product. We're using continuous integration, and our builds are now taking 2 hours to run.
I've looked at the NANT timings and see alot of places ...
3
votes
4answers
1k views
What are the porting issues going from VC8 (VS2005) to VC9 (VS2008)?
I have inherited a very large and complex project (actually, a 'solution' consisting of 119 'projects', most of which are DLLs) that was built and tested under VC8 (VS2005), and I have the task of ...
2
votes
1answer
114 views
Why is term not evaluating to a function taking 0 arguments?
When I try compiling
template<bool val>
struct boolean { static const bool value = val; };
template<typename T>
struct is_callable : boolean<sizeof((*(T*)0)()) >= 0> { }; ...
2
votes
0answers
45 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
3answers
150 views
Why do I get these warnings in Visual C++ 2008 when building a struct?
I have this code
typedef struct
{
const char* fooString;
const bool fooBool;
}fooStruct;
And this initializer:
static const fooStruct foo[] =
{
{"file1", true},
{"file2", false},
...
2
votes
4answers
838 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
178 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
1answer
54 views
VS 2008 : See the elements referred to pointer
This seems to be a rather stupid question, but I create a pointer to an array of doubles :
double* tab = new double[10];
Then I fill the double array, but when I expand the tab pointer in Debug ...
2
votes
2answers
354 views
How do I make VC++'s debugger break on exceptions?
I'm trying to debug a problem in a DLL written in C that keeps causing access violations. I'm using Visual C++ 2008, but the code is straight C.
I'm used to Delphi, where if an exception occurs ...
2
votes
2answers
1k views
Conditional compiling according to VC++ compiler version
I am in the process of migrating our VC++ project from Visual Studio 2005 (VC8) to Visual Studio 2008 (VC9). Some of the projects in the solution have paths to third party libraries in their ...
1
vote
2answers
161 views
Is there a conventional/standard way to create an MFC error dialog?
I'd like to create a dialog for my application that shows a message and displays the standard red circle with the white "x" in the middle; seems to me this is a pretty standard windows dialog. I'm ...
1
vote
4answers
111 views
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).
For example,
the following code is ...
1
vote
1answer
373 views
getting all combinations from numbers without repeating
hi
I work with c++ ,can I find easy way for getting an array from a set of numbers containing all possible combinations between
ex : {1,2,3}
{ {3,1,2},
{1,2,3},
{3,2,1},
{1,3,2},
...
1
vote
1answer
229 views
release version of app throwing c1083 cannot open include file error
I have a project that I have been running in debug mode and compiles and works fine. However, when I try and do a release version I now get the following error:
"fatal error C1083: Cannot open ...
1
vote
4answers
167 views
Why are there two files created (.h and .cpp) when creating a new C++ class?
I have programmed a bit of C++ back about 14 years ago. I got acquainted to new technologies such as .NET with which I work mostly work with.
Now, I'm writing a simlpe phone list Windows Application ...
1
vote
2answers
492 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
317 views
Setup Project Custom Action in C++ “[TARGETDIR]”
I am trying to copy file into the setup target directory.
I am using this:
TCHAR destPath[ MAX_PATH ] = &L"[TARGETDIR]";
wcscat_s(destPath, L"LiveFo@nextjmp.com\\Capture.png");
...
1
vote
2answers
1k views
Determine when using the VC90 compiler in VS2010 instead of VS2008?
Is there a (Microsoft-specific) CPP macro to determine when I'm using the VC9 compiler in Visual Studio 2010 as opposed to Visual Studio 2008? _MSC_VER returns the compiler version, so with VS2010 ...
1
vote
2answers
103 views
How to simulate a file read error in the CRT
Using VS2008, we would like to simulate a file that has a size of X, but that has a read failure at X-Y bytes, so that we get an error indication.
Anyone have an idea of how to do this on windows? ...
1
vote
0answers
76 views
How am I getting this error?
Doing Managed C++ in VS2008. Have a vendor defined data structure as follows:
class API TF_StringList
{
public:
TF_StringList(const char* encoding = "cp_1252");
~TF_StringList();
TF_String* ...
1
vote
3answers
367 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
1answer
61 views
VC++ 2010 Syntax Highlighting vs. VC++ 2008 Syntax Highlighting: Tab Character Issue
Visual C++ 2010 has some sort of weird syntax highlighting issue when it comes to tab characters inside comments, and I know this is a trivial issues, but it's driving me crazy. I'm going to have to ...
0
votes
1answer
121 views
integer to string
The strutils.h library contains a function IntegerToString. (You might have wondered how
the computer actually goes about the process of converting an integer into its string representation.)
As it ...
0
votes
0answers
58 views
Arrays with Curiously Recurring Template Pattern?
I have a CRTP-based wrapper for a Windows HANDLE:
#include <windows.h>
template<class T>
class HandleT
{
HANDLE handle;
operator HANDLE() const { return this->handle; }
...
0
votes
1answer
82 views
Is it possible to inject code into translation unit immediately before compilation
I build my C++ code base with MSVC++ 2008 and 2010. Is it even possible to get translation unit, analyze it, insert some code if necessary and then pass on to the compilation process? Original source ...
0
votes
2answers
90 views
FILE pointer mysteriously resetting to NULL
I'm using visual stduio 2008 c++. And I'm writing windows form application. I declare a FILE* array at the top of Form1.h as a global value
const int k = 1; //i need to change k to 2 sometimes.
...
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
5answers
212 views
error when i give sleep(1000), to make srand() work, in visual C++
i have following program:
srand((unsigned) time(NULL));
for (int w = 0; w < 10; w++) {
int ran_x;
ran_x = rand() % 255;
cout << "nRandom X = " << ran_x << endl;
...
0
votes
6answers
98 views
in visual c++, warning comes but program doesnt runs furthers, is there any way to igonre it?
i have written a code, snippet of it is:
int num[8],n=0;
for (n = 0; n<8; n++)
{
char temp = binnum[n];
num[n] = atoi(&temp);
cout << num[n];
}
It doesnt gives any error, ...
0
votes
1answer
224 views
fopen crashes only when running from release executable
I make several calls to a function that reads data from an input file. Everything works fine in debug mode, but when I try to run the executable from release mode, the line with fopen crashes the ...
0
votes
2answers
154 views
2-d array of doubles failed to initialize
I am making several calls to a function that initializes 2-d arrays of doubles. The first three calls are successful, but the fourth call fails. Code is:
double **scmass;
double **scdv;
double ...
0
votes
1answer
1k views
How to open vcxproj (visual c++ project) with visual studio 2008
does anybody know how to open vcxproj in visual studio 2008. It seems this file was only opened by visual studio 2010 isn't it?
0
votes
1answer
165 views
Why could an enum type be used without defined
I am using VC2008 as my complier, and it is surprised to me that an enum could be used without defined:
void func(enum EnumType type)
{
}
Code above could be compiled and run without a problem, ...
0
votes
3answers
218 views
#include <Header.h> is not compiling while #include “Header.h” is compiling
Don't understand why
#include <Header.h> is not compiling while #include "Header.h" is compiling with Visual Studio 2008. Am I missing something?
0
votes
4answers
2k views
fatal error LNK1112: module machine type 'x64' conflicts with target machine type 'X86'
I'm using CUDA(VC++ visual studio 2008sp1) to debug a FEM program. The program can only run on a win32 platform, for the insufficiency of cuda. I think the library files linked are all compiled on ...
0
votes
2answers
187 views
Weird behavior of std::vector
I have a class like this:
class OBJ{...};
class A
{
public:
vector<OBJ> v;
A(int SZ){v.clear(); v.reserve(SZ);}
};
A *a = new A(123);
OBJ something;
a->v.push_back(something);
...
0
votes
1answer
195 views
Cannot add library in VC++ 2008: My System is Different
Hopefully someone can tell me what's going on here. I'm trying to link to gdiplus.lib and I tried to go to "Properties - Linker - Input - Additional Dependencies" to add the library but I do NOT have ...
0
votes
1answer
81 views
Visual C++ 2008 doesn't recognize Windows declared types
I have a program that doesn't seem to recognize declared types in the latest U3D software. There's a line
typedef BOOL (WINAPI* GMI)(HMON, LPMONITORINFOEX);
which gets the error:
Error 1 ...
0
votes
3answers
325 views
run time detection of processor type - atomic operations
I am implementing some speed critical multithreaded code. I can avoid having some critical sections if I know for certain that some basic write operations are atomic. I just read an academic paper in ...