Tagged Questions
The vc6-migration tag has no wiki summary.
1
vote
3answers
184 views
Does static library avoids name mangling issues?
I have a C++\MFC application written in Visual Studio 2003 SP1 links to an external static library "SomeExtStaticLib.lib". I also include the header files provided with "SomeExtStaticLib.lib" to ...
1
vote
2answers
643 views
Visual C++ 6.0 - fatal error C1063
i've converted a my application originally written in MS Visual Studio 2008 to be compiled on MS Visual C++ 6.0 (see my previous question).
After the conversion of all my code now compiles in ...
0
votes
0answers
67 views
Visual studio 6 to studio 2010 with an activex control
I am trying to convert a visual studio 6 project to Visual studio 2010.
There is an activex control on the dialog box. it works fine in Studio 6.
However it fails in
BOOL ...
0
votes
0answers
17 views
Runtime errors after porting application from VC 6 to VS 2003
I have a GUI application written using MFC in VC 6. It uses stlport 5.1 and zipArchive libraries. When I upgraded this project to VS 2003, I got many linking errors which I resolved applying ...
0
votes
0answers
176 views
OCX performance drops after compiler upgrade from VC6 to VS2008
I'm responsible for maintaining a collection of DLLs and one OCX component. The software is used by our customers to retrieve data from our server. The OCX is basically a simplified wrapper around the ...
0
votes
2answers
349 views
Error C1001 “Internal Compiler Error”
I am trying to run a VC++ 6 project in VS2010. In that am getting "Internal Compiler error.. error C1001". Can anyone please tell me how to rectify that error? I googled for this and i found ...
0
votes
1answer
740 views
Linker error 2005, 2001 in Visual Studio 2008
I have a atl com project that was compiling fine in VC6 which gives the following linker errors when compiled in VS2008.
error LNK2005: "void * __cdecl
operator new(unsigned int)"
...
0
votes
4answers
2k views
Error C2593: Operator = is ambiguous
typedef map<wstring , IWString> REVERSETAG_CACHE ;
REVERSETAG_CACHE::iterator revrsetagcacheiter;
.
.
.
wstring strCurTag;
strCurTag = revrsetagcacheiter->second; //Error C2593
Error ...
0
votes
4answers
3k views
Cannot convert from 'const wchar_t *' to '_TCHAR *'
_TCHAR* strGroupName = NULL;
const _TCHAR* strTempName = NULL;
//Assign some value to strTempName
strGroupName = _tcschr(strTempName, 92) //C2440
I get an error at the above line while compiling ...
0
votes
3answers
3k views
error C2440: 'initializing' : cannot convert from 'std::_Vector_iterator<_Ty,_Alloc>' to 'type *'
I am getting the following error while migrating VC6 code to VS2008. This code works fine in VC6 but gives a compilation error in VC9. I know it is because of a compiler breaking change. What is the ...