Tagged Questions
Microsoft Visual C++ (often abbreviated as MSVC or VC++) is a commercial, integrated development environment (IDE) product from Microsoft for the C, C++, and C++/CLI programming languages.
17
votes
5answers
1k views
How can adding code to a loop make it faster?
I have a simple function with an inner loop - it scales the input value, looks up an output value in a lookup table, and copies it to the destination. (ftol_ambient is a trick I copied from the web ...
14
votes
3answers
5k views
Will new return NULL in any case?
I know that according to C++ standard in case the new fails to allocate memory it is supposed to throw std::bad_alloc exception. But I have heard that some compilers such as VC6 (or CRT ...
12
votes
4answers
4k views
Precompiled Headers
I have a sample project (not mine) which is in Visual C++ 6. I'm trying to convert it to Visual Studio 2008.
The older project is using precompiled headers. Now the questions are:
What are ...
10
votes
1answer
5k views
Visual Studio 2010 64-bit COM Interop Issue
I am trying to add a VC6 COM DLL to our VS2010RC C# solution. The DLL was compiled with the VC6 tools to create an x86 version and was compiled with the VC7 Cross-platform tools to generate a VC7 DLL.
...
9
votes
15answers
2k views
What are some convincing arguments to upgrade from Visual Studio 6?
I have a client who is still using Visual Studio 6 for building production systems. They write multi-threaded systems that use STL and run on mutli-processor machines.
Occasionally when they change ...
8
votes
9answers
5k views
Is there any reason to check for a NULL pointer before deleting?
I see some legacy code checking for null before deleting the pointer.
as like below
if(NULL != pSomeObject)//any reason for checking for null
{
delete pSomeObject;
pSomeObject = NULL;//any reason ...
8
votes
3answers
1k views
What's the latest version of Boost compatible with VC++6?
What is the latest version of the Boost library that is compatible with Microsoft Visual C++ 6? And can you provide a link to download it directly?
The Downloads link at http://www.boost.org only ...
7
votes
3answers
3k views
Using static variable along with templates
I have a template class defined in a header file like this. Here I have defined a static variable as well:
#ifndef TEST1_H_
#define TEST1_H_
void f1();
static int count;
template <class T>
...
7
votes
14answers
7k views
What are the differences between Visual C++ 6.0 and Visual C++ 2008?
What are the advantages/disadvantages between MS VS C++ 6.0 and MSVS C++ 2008?
The main reason for asking such a question is that there are still many decent programmers that prefer using the older ...
6
votes
2answers
321 views
Good C++ book about (Unit) Testing
I looked and searched the web but could not found one book dedicated to Testing in C++. They are all more or less Java related with p.s. like examples should be easy converted to C++...
I would really ...
6
votes
5answers
347 views
Variable Scope in C++
If I had the following code:
for(int myvar = 0; myvar < 10; myvar++);
if(1)
{
int var2 = 16;
}
Then, afterwards I wrote the following:
myvar = 0;
var2 = 0;
Would that be legal?
My VC++6 ...
6
votes
1answer
389 views
.lib and .dll Backward Compatibility
I currently have a VS6 unmanaged C library that I deliver as either a .lib or .dll. I want to upgrade to VS2010 but I still have users that are in VS6, VS2005, and VS2008.
Can a .lib or .dll built in ...
6
votes
8answers
870 views
Using Visual Studio 6 C++ compiler from within Emacs
I'm just getting started with c++ development and I would like to use emacs to write the code and then compile and run it from within emacs using the visual studio 6 compiler. I have already googled ...
6
votes
2answers
10k views
How to run a console application with command line parameters in Visual C++ 6.0?
I've got a console application that compiles and executes fine with Visual C++ 6.0, except that it will then only get as far as telling me about missing command line parameters. There doesn't seem to ...
5
votes
4answers
2k views
Is there a TRACE statement for basic win32 C++?
In MFC C++ (Visual Studio 6) I am used to using the TRACE macro for debugging. Is there an equivalent statement for plain win32?
5
votes
2answers
687 views
Can I embed Strawberry Perl in a VC++ 6.0 compiled application or use Inline::C with the compiler mismatch?
I am looking at embedding perl 5.10 in a large C++ application compiled with VC++ 6.0. This leads to two questions.
1) Is it a bad idea to simply use Strawberry Perl as a dependency rather than ...
4
votes
3answers
222 views
Why can't I directly set an __int64 variable to -2500000000?
This program is written in VC++ 6.0 on a WindowsXP machine.
If I try to set an __int64 variable to -2500000000 directly, it is truncated to a 32bit value and the two's complement is taken.
__int64 ...
4
votes
4answers
300 views
Compiler optimization causing the performance to slow down
I have one strange problem. I have following piece of code:
template<clss index, class policy>
inline int CBase<index,policy>::func(const A& test_in, int* srcPtr ,int* dstPtr)
{
...
4
votes
1answer
219 views
Can you tune C runtime heap segment reservation size on XP?
When the VC6 C runtime on XP can't serve an allocation request within an existing heap segment, it reserves a new segment. The size of these new segments increase by factors of 2 (until there are not ...
4
votes
8answers
553 views
Compiling C code in Windows XP
I have C code that was compiled on Windows NT with Microsoft Visual Studio 6.0. I am migrating this code to a new machine using Windows XP. What IDE is suitable for this? I don't think MS Visual 6.0 ...
4
votes
4answers
828 views
How to create a structure which contains a list of itself
I want to create a structure which contains a list of same structure like this.
#include <list>
struct Url
{
CString strUrl;
std::list<Url> children;
};
void main()
{
Url u1, ...
4
votes
5answers
329 views
Catching exception in code
I was trying this piece of code to check whether the divide by zero exception is being caught:
int main(int argc, char* argv[])
{
try
{
//Divide by zero
int k = 0;
int j = ...
4
votes
5answers
1k views
The compilation process
Can anyone explain how compilation works?
I can't seem to figure out how compilation works..
To be more specific, here's an example.. I'm trying to write some code in MSVC++ 6 to load a Lua state.. ...
3
votes
5answers
142 views
memory leak - release and delete
IFSUPCUTILSize* size = NULL;
CoCreateInstance(CLSID_UTILSize, NULL, CLSCTX_INPROC_SERVER, IID_IFSUPCUTILSize, reinterpret_cast<void**>(&size));
if (size != NULL){
size->Release();
...
3
votes
3answers
160 views
Heap corruption when trimming delayed free queue
I'm currently attempting to track down the source of heap corruption in our code base, which doesn't present itself when full page heap tracking is turned on (so only normal page tracking).
I'm using ...
3
votes
2answers
363 views
Return SAFEARRAY of custom interface types to VB6 through COM
Is it possible to return an array of defined interface objects from a C++ COM function (VC6) to a VB6 client? I've scoured the web and haven't been able to come across anything that describes what I ...
3
votes
2answers
231 views
unable to pass Template function as a callback parameter
Please refer the code below:
typedef void (*TimerCallback)(int RequestID_in, void* AdditionalParameter_in);
class MyTimer
{
public:
MyTimer(){}
bool schedule( int Interval_in, ...
3
votes
1answer
83 views
VC6 linking conflict
I have an old c++ project compiled with VC6.
I need to statically link a new library to implement a new functionality.
Unfortunately the new library define a symbol (i.e. _inflate) that is already ...
3
votes
2answers
272 views
Can I use a C style library built with VC6 directly in VC9 project?
We use an internal library(developed by some other team) built with VC6 compiler. This library mainly contains C Style APIs. We have a plan to migrate to Visual Studio 9 compiler. Should I request ...
3
votes
12answers
1k views
Is it time to say goodbye to VC6 compiler?
Of late I'm facing the issues that points finger to VC6 compiler.
Few of them are:
A function-try-block doesn't work. Related Q
in-class constant doesn't work.
__FUNCTION_ (Macro to get function ...
3
votes
7answers
382 views
wrong argument conversion preferred when calling function
I'm writing a program under MS Visual C++ 6.0 (yes, I know it's ancient, no there's nothing I can do to upgrade). I'm seeing some behavior that I think is really weird. I have a class with two ...
3
votes
4answers
287 views
Serial Comms dies in WinXP
A bit of history: We have an application, which was originally written many years ago (1998 is the first date in PVCS but the app is about 5 years older than that as it originally was a DOS program). ...
3
votes
5answers
3k views
Removing SourceSafe Integration from Visual Studio 6
Recently, the SourceSafe integration into visual studio has started to perform badly because we have moved, and the SourceSafe "server" is located across a VPN which goes across a slow connection. ...
3
votes
2answers
747 views
How do I parse this correctly with spirit?
My situation: I'm new to Spirit, I have to use VC6 and am thus using Spirit 1.6.4.
I have a line that looks like this:
//The Description;DESCRIPTION;;
I want to put the text DESCRIPTION in a ...
3
votes
2answers
2k views
User Breakpoint from nowhere
I have some code in MS VC++ 6.0 that I am debugging. For some reason, at this certain point where I am trying to delete some dynamically allocated memory, it breaks and I get a pop up message box ...
3
votes
3answers
4k views
VisualC++ 6.0 with unsigned long long and sprintf
i want to sprintf() an unsigned long long value in visual C++ 6.0 (plain C).
char buf[1000]; //bad coding
unsigned __int64 l = 12345678;
char t1[6] = "test1";
char t2[6] = "test2";
sprintf(buf, ...
3
votes
6answers
2k views
Command line builds for VC 6?
I have been used to working with VS2005 and 2008 - using msbuild, etc, but I have inherited a set of projects that have to remain in vc6.0 for now. I don't like opening each project in the developer ...
2
votes
2answers
79 views
push_back failing in VC6
I know VC6 is 20th century technology, but for some special reasons that's the compiler I have to use.
I have the following code, which works just fine in Visual Studio Express 2008 (32 bits)
while( ...
2
votes
1answer
290 views
Migrated MFC app from VC6 to VS2010, now OnInitDialog() not called for CPropertyPage subclass
I have been tasked with migrating our product's UI to VS2010. It is an MFC app, originally written in VC6. I have performed the following steps:
Converted the VC6 .dsp using VS2010
fixed up compile ...
2
votes
4answers
329 views
Defining _CRT_SECURE_NO_WARNINGS lead to crash in vector destructor
I am working with a legacy code ported from Visual C++ 6.0 to VC++ 9.0 (2008). I disabled the secure CRT warnings using _CRT_SECURE_NO_WARNINGS pre-processor definition. But that has lead to crashes ...
2
votes
2answers
244 views
Why the CString(LPCTSTR lpsz) constrcutor check the high two bytes of lpsz?
I am reading the source code of CString in MFC. I am very curious about the implementation way of constructor CString::CString(LPCTSTR lpsz).
In my understanding, before copying the string indicated ...
2
votes
1answer
481 views
Visual Studio 2010 compiling inline assembly in c++ as if Visual Studio 6?
I have a C++ project created in VS6 that was opened in VS2010 and compiles fine. It contains a class with a bit of inline assembly including the following code:
__asm{
mov eax,this
mov ...
2
votes
2answers
156 views
Error with member function template
I am getting compilation error in below code.
class A
{
public:
A()
{
}
~A()
{
}
void func()
{
cout <<"Ha ha ha \n";
}
};
class C
{
public:
C()
{
}
...
2
votes
1answer
269 views
VC++ 6.0 MFC - Problem using Macro defined in <WINSER.H>
I am facing a weird problem. I have got a file called in which I am using a macro called "WM_USER", the macro is defined in another header file called . Now the problem is that when I am using the ...
2
votes
2answers
676 views
Convert CString to string (VC6)
I want to convert CString to string. (Yup. I know what am I doing. I know the returned string will be incorrect, if CString value range is outside ANSI, but That's Is OK!)
The following code will ...
2
votes
2answers
1k views
“One or more breakpoints cannot be set and have been disabled. Execution will stop at the beginning of the program.”
I set a breakpoint in my code in Visual-C++, but when I run, I see the error mentioned in the title.
I know this question has been asked before on Stack Overflow ...
2
votes
3answers
270 views
unit testing framework for Microsoft Visual C++ 6.0
Is there a unit testing framework for Microsoft Visual C++ 6.0?
2
votes
1answer
114 views
Add watermark to various documents investigation
I've been asked to investigate the feasibility of adding watermarks to documents when printed through our application. The documents will consist of word, pdf and cad.
The interface of the ...
2
votes
1answer
201 views
Mutex needed in MSMQ?
I'm browsing source codes from two applications sharing one queue using MSMQ. The first application has a thread that writes into the queue while the second application has another thread that reads ...
2
votes
3answers
150 views
Build error with VC6
When I build my application in VC6 IDE, I get this error:
--------------------Configuration: all - Win32 PRO Unicode Release--------------------
The system cannot find the file specified.
Error ...