Tagged Questions

0
votes
0answers
7 views

Using a COM based Addin created for Visual Studio 6 in Visual Studio 2005.

Is it possible to use an Add-in created for Visual Studio 6 in Visual Studio 2005. I know its possible for one to use COM Add-ins created for Visual Studio 2002/3 in Visual Studio …
0
votes
1answer
22 views

Define a struct in a midl generated header file

I am in the process of automating the build of a legacy product and have hit a wall... I have a .idl file that is compiled in VC++ 6.0 using midl to generate a .tlb, .h and .c fil …
0
votes
3answers
702 views

Static library - visual studio 2005/6.0 compatibility

In the past we experienced some problems using a DLL library created with Visual Studio 2005 in our Visual Studio 6.0 application (VS2005 DLL was C++ unmanaged, of course). In your …
0
votes
2answers
326 views

What library should be included to use TransparentBlt?

What library should be included to use TransparentBlt? This is VC98 (Visual Studio 6) linking to the Gdi32.lib. (Other GDI functions such as BitBlt link as expected), and the comp …
0
votes
1answer
41 views

Visual Modeler in VS 6

Till date I have used only VB6 Professional for developing apps. But recently I have joined a company which owns VS 6 Enterprise (or some such version) I was just exploring what …
0
votes
1answer
457 views

How do I set up a custom build step in Visual Studio 6?

Unfortunately it looks like for various reasons I'm going to have to use Visual Studio 6 instead of a newer version of VS. It's been a long time since I've used it. I'm looking th …
1
vote
1answer
536 views

Visual Studio 6 VC++ Project version - how do I increment it?

I am making changes to an old program written in VC++6. the project resources include a 'version' set which include the following: Block Header Comments Company Name File Version P …
3
votes
4answers
348 views

how to avoid “already defined error” in C++

I am gettings these type of errors in a MFC VS6 project while linking the application: msvcrt.lib(MSVCRT.dll) : error LNK2005: _atoi already defined in LIBC.lib(atox.obj) I know …
1
vote
1answer
414 views

How do I write the following inline assembly code in visual c++ 6.0?

Hello all, I am writing an application in C in GCC (for linux/ubuntu) that uses the following inline assembly: float a[4] = { 10, 20, 30, 40 }; float b[4] = { 0.1, 0.1, 0.1, 0.1 …
2
votes
3answers
224 views

std::auto_ptr Compile Issue in Visual Studio 6.0

Update: Edited code example to use AutoA for the workaround (which was the original intention). Realized this after seeing rlbond's answer. I am trying to incorporate the usage o …