Click here to Skip to main content
15,918,596 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Win32 programming Pin
Subrat Patnaik19-Nov-09 23:47
Subrat Patnaik19-Nov-09 23:47 
GeneralRe: Win32 programming Pin
Richard MacCutchan19-Nov-09 23:57
mveRichard MacCutchan19-Nov-09 23:57 
AnswerRe: Win32 programming Pin
m_mun18-Nov-09 22:53
m_mun18-Nov-09 22:53 
AnswerRe: Win32 programming Pin
SandipG 18-Nov-09 23:00
SandipG 18-Nov-09 23:00 
AnswerRe: Win32 programming Pin
LunaticFringe18-Nov-09 23:03
LunaticFringe18-Nov-09 23:03 
AnswerRe: Win32 programming Pin
vctrlao19-Nov-09 3:17
vctrlao19-Nov-09 3:17 
QuestionC/C++ programming under Linux/Unix Pin
programmer20218-Nov-09 21:00
programmer20218-Nov-09 21:00 
AnswerRe: C/C++ programming under Linux/Unix Pin
CPallini18-Nov-09 21:17
mveCPallini18-Nov-09 21:17 
GeneralRe: C/C++ programming under Linux/Unix Pin
Cedric Moonen18-Nov-09 21:23
Cedric Moonen18-Nov-09 21:23 
GeneralRe: C/C++ programming under Linux/Unix Pin
CPallini18-Nov-09 21:26
mveCPallini18-Nov-09 21:26 
GeneralRe: C/C++ programming under Linux/Unix Pin
Richard MacCutchan18-Nov-09 21:58
mveRichard MacCutchan18-Nov-09 21:58 
GeneralRe: C/C++ programming under Linux/Unix Pin
Rajesh R Subramanian19-Nov-09 4:01
professionalRajesh R Subramanian19-Nov-09 4:01 
GeneralRe: C/C++ programming under Linux/Unix Pin
Cedric Moonen18-Nov-09 22:05
Cedric Moonen18-Nov-09 22:05 
GeneralRe: C/C++ programming under Linux/Unix Pin
CPallini18-Nov-09 23:28
mveCPallini18-Nov-09 23:28 
GeneralRe: C/C++ programming under Linux/Unix Pin
Richard MacCutchan19-Nov-09 6:31
mveRichard MacCutchan19-Nov-09 6:31 
GeneralRe: C/C++ programming under Linux/Unix Pin
CPallini19-Nov-09 8:01
mveCPallini19-Nov-09 8:01 
GeneralRe: C/C++ programming under Linux/Unix Pin
Rajesh R Subramanian19-Nov-09 16:41
professionalRajesh R Subramanian19-Nov-09 16:41 
GeneralRe: C/C++ programming under Linux/Unix Pin
N a v a n e e t h19-Nov-09 2:31
N a v a n e e t h19-Nov-09 2:31 
AnswerRe: C/C++ programming under Linux/Unix Pin
mav@octaval18-Nov-09 21:20
mav@octaval18-Nov-09 21:20 
AnswerRe: C/C++ programming under Linux/Unix Pin
sashoalm18-Nov-09 22:34
sashoalm18-Nov-09 22:34 
AnswerRe: C/C++ programming under Linux/Unix Pin
Rajesh R Subramanian19-Nov-09 4:02
professionalRajesh R Subramanian19-Nov-09 4:02 
QuestionMethod to migrate C++ application from vs6 to vs8 Pin
john563218-Nov-09 19:17
john563218-Nov-09 19:17 
AnswerRe: Method to migrate C++ application from vs6 to vs8 Pin
john563218-Nov-09 20:18
john563218-Nov-09 20:18 
GeneralRe: Method to migrate C++ application from vs6 to vs8 Pin
Cedric Moonen18-Nov-09 20:35
Cedric Moonen18-Nov-09 20:35 
Dev-2 wrote:
Will anybody give answer of this question?


Where do you think you are ? This is a message board, not a chat here. So be patient!

Now for your question, there's no automatic or magic way to migrate from VC6 to a more recent version. What you have to do is open your VC6 workspace with VS2005, then a conversion wizard will appear asking you if you want to convert the project. This only converts the project files, not the source files. Once the conversion is done, you'll need to compile and check if everything is ok. If you have errors, well you need to fix them and recompile. And if other errors appear, you have to repeat the operation Smile | :) .

One of the most frequent source of error coming from that kind of migration, is the support for UNICODE. By default in vc6 it is disabled but for more recent IDE, it is enabled. It means that if you used char instead of TCHAR in your code, you'll end up with a lot of errors. I suggest you read this article[^] if you want more information (you could also disable UNICODE support in your project options).

Good luck.

Cédric Moonen
Software developer

Charting control [v2.0]
OpenGL game tutorial in C++

GeneralRe: Method to migrate C++ application from vs6 to vs8 Pin
john563218-Nov-09 20:36
john563218-Nov-09 20:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.