2
votes
3answers
63 views
What is the Code Definition Window in Visual C++ 2008 Express?
I am working on the Sphere Online Judge problems (OK I am only on my 2nd lol) and using VC++ 2008 express and have just noticed the "code definition window". What exactly does this …
0
votes
1answer
48 views
convert a list of structs from c# to c++
I have the following c# code
static void Main(string[] args)
{
List<Results> votes = new List<Results>();
}
public struct Results
{
public int …
1
vote
0answers
89 views
Underused features of C++ [closed]
Possible Duplicates:
Hidden Features of C++?
Hidden Features of Java
What are the underused features of C++ ?
0
votes
3answers
66 views
How to create a dll in Visual C++?
Any good website?
1
vote
5answers
82 views
Incomplete Type memory leaks?
Microsoft Visual Studio 2008 is giving me the following warning:
warning C4150: deletion of pointer to incomplete type 'GLCM::Component'; no destructor called
This is probably be …
-1
votes
3answers
79 views
Why does my application run well on an Intel proccesor but doesn’t run on a AMD processor?
I have a Windows application made in Visual C++. It runs well on an Intel Proccesor but it crashes on another system with an AMD processor (both systems have Windows XP installed). …
0
votes
2answers
17 views
Visual C++: breakpoints disabled
I have a 'release with debug info' unmanaged c++ .exe (built with VS2005) deployed onto another PC, the .exe and .pdb are in the same folder.
When I try to attach to the process f …
0
votes
3answers
69 views
Convert string from __DATE__ into a time_t
I'm trying to convert the string produced from the __DATE__ macro into a time_t. I don't need a full-blown date/time parser, something that only handles the format of the __DATE__ …
0
votes
2answers
69 views
What does this error message mean?
Hi all,
In C++, on this site: http://msdn.microsoft.com/en-au/visualc/bb985511.aspx
I downloaded the code sample and went to Debug and it came up with a messagebox with 2 textbox …
0
votes
8answers
201 views
How could running code in the debugger makes it faster?
The title says it all.
It never happened to me. In Visual Studio, I have a part of code that is executed 300 times, I time it every iteration with the performance counter, and the …
0
votes
2answers
42 views
Single file compilation and execution in Visual C++ 2008?
I am doing a tutorial on C++ (learning it). The best way to learn is by example. I have little .cpp files with not much in them. I am using the best C++ IDE (Visual C++). Is there …
2
votes
4answers
129 views
C++ IntelliSense ‘auto’ feature? Where is it? How to get it ‘on’?
I would like to enable the IntelliSense 'auto' feature (like the Visual Studio C# 2008 Express) but I am using Visual Studio C++ 2008 Express Edition and in the Tools > Options > T …
3
votes
4answers
120 views
Why is this the same even when object pointers differ in multiple inheritance?
When using multiple inheritance C++ has to maintain several vtables which leads to having "several views" of common base classes.
Here's a code snippet:
#include "stdafx.h"
#incl …
2
votes
1answer
50 views
Is every application using anything dependent on VC++9 runtime required to have a manifest embedded?
I don't get what this article on R6034 says. Looks like it states that every application dependent on VC++9 runtime must have a manifest.
Now we have a DLL that we ship to custome …
0
votes
4answers
78 views
newbie needs help i can’t find whats wrong. i enter num and it stops
/*********************************************************************
*Program Name : CSC 110 - 003 Store Unknown Number of Values
*Author : Anthony Small
*Due Date …
