Click here to Skip to main content
15,879,093 members
Articles / Programming Languages / C++

VC++7 to VC++6 Project Converter

Rate me:
Please Sign up or sign in to vote.
4.92/5 (204 votes)
22 Oct 20033 min read 1M   25.6K   247   261
Automatically convert Visual C++ 7.0 projects back to Visual C++ 6.0 projects.
This tool automatically converts VC++7 projects back to VC++6 projects. Without this tool, you end up recreating your projects from scratch, which is a total waste of time, and prone to errors. In this post, you will find a list of scenarios where this tool is useful. You will also find out how to use it, what is converted and technical details.

Image 1

What Is This ?

This tool automatically converts Visual C++ 7.0 projects back to Visual C++ 6.0 projects. In other words, .sln/.vcproj file pairs are translated to .dsw/.dsp file pairs.

Important note, there is no loss during the conversion: source code is left unchanged; only .dsw/.dsp are created (or overwritten).

Why?

First of all, because MS doesn't provide it. It's easy to become cynical against MS when you feel how bad it is to sell developer tools without all the necessary "moulinettes" (converters in ugly English) to go backward.

Without this tool, you end up recreating your projects from scratch: a total waste of time, and prone to errors. Actually, there are several scenarios where this tool is useful:

  • Someone gives you a VC++ 7 project, and you only have VC++ 6 installed.
  • You have upgraded your project(s) from VC++ 6 to VC++ 7, and you have both .dsw/.dsp and .sln/.vcproj files on your local system drive, but you are willing to keep those files synchronized so any time you need to open the project, you need not bother the VC++ version you work with.
  • Provide both versions of projects (for instance, when you share code on CodeProject), so your audience does not need to bother with knowing which devtool is required.

How to Use It

The tool is a command line of the form:

prjconverter <solutionname (full filepath)>[.sln]

For instance:

prjconverter c:\tmp\betterxml\betterxml.sln

For info, type prjconverter.exe alone in the console.

What is Converted

A few steps to let you know how the work gets done. The .sln solution file is opened and translated to the .dsw file format, along with all project declarations, dependencies, and source control tags.

Then all .vcproj project files are translated to .dsp files. I use MSXML to parse the .vcproj file format, and build the meta-model out of it. Then what's left to do is serialize all those XML thingies into the standard .dsp symbol lines.

Of course, we care about project configurations (debug, release, ...), and custom file configuration settings.

Technical Details

In the code provided, slnprocess.cpp does the .sln =>.dsw conversion. vcprojprocess.cpp does the .vcproj => .dsp conversion. And vcprojconfiguration.cpp holds the project meta-model (all project setting tabs). In VC++ 7, the meta-model is now programmable. Let's check out this link. In fact, vcprojconfiguration.cpp reflects exactly this meta-model (as if it was internal MS code).

Disclaimer

This tool has been extensively tested before being published (MFC/COM/ATL/console apps, makefiles, ...). Though I am willing to know if there is anything I can do in order to improve it, let me clearly say that it's not my fault if your project is corrupted by this tool.

Update History

  • 27th September, 2002 - Code complete
  • 2nd October, 2002 - Now it is possible to convert .vcproj files alone (no need of a root .sln file): just type the .vcproj full path in the command line.
  • 30th October, 2002 - Improvements based on user feedback: added missing default link libraries, expanded certain macro variables such like $(OutDir) and $(IntDir), replaced or removed certain macro variables not supported by VC6 such like $(NoInherit), added /GX (exception handling enabled)
  • 13th November, 2002 - Bug fixes: filenames with spaces, MFC extension DLL support, custom precompiled header setting, project setting inheritance

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
France France
Addicted to reverse engineering. At work, I am developing business intelligence software in a team of smart people (independent software vendor).

Need a fast Excel generation component? Try xlsgen.

Comments and Discussions

 
GeneralRe: Some error msg in VC++ 6 Pin
MrJOeM21-Nov-06 7:25
MrJOeM21-Nov-06 7:25 
GeneralWonderful job Pin
MRAAX23-Dec-05 21:53
MRAAX23-Dec-05 21:53 
Generalhelp ,wont detect the .sln Pin
dirk>uk24-Nov-05 10:52
dirk>uk24-Nov-05 10:52 
QuestionIE SaveAs MHTML Pin
pluplu20021-Nov-05 6:56
pluplu20021-Nov-05 6:56 
GeneralGenerate makefile from VC 6 Pin
Irvin Tan8-Nov-05 22:01
Irvin Tan8-Nov-05 22:01 
GeneralRe: Generate makefile from VC 6 Pin
Stephane Rodriguez.9-Nov-05 5:43
Stephane Rodriguez.9-Nov-05 5:43 
GeneralExcellent but fails in one case Pin
Pierre Couderc8-Nov-05 21:19
Pierre Couderc8-Nov-05 21:19 
GeneralRe: Excellent but fails in one case Pin
Stephane Rodriguez.9-Nov-05 5:50
Stephane Rodriguez.9-Nov-05 5:50 
Dxf reader is a C# project, not C++.

GeneralRe: Excellent but fails in one case Pin
Pierre Couderc9-Nov-05 19:07
Pierre Couderc9-Nov-05 19:07 
GeneralExcelent! Pin
Gavriloaie Andrei23-Oct-05 11:24
Gavriloaie Andrei23-Oct-05 11:24 
GeneralGood work! Pin
TedLadewski4-Oct-05 10:09
TedLadewski4-Oct-05 10:09 
GeneralDoesn't work Pin
afil654514-Sep-05 20:10
afil654514-Sep-05 20:10 
GeneralRe: Doesn't work Pin
Stephane Rodriguez.19-Sep-05 2:31
Stephane Rodriguez.19-Sep-05 2:31 
GeneralRe: Doesn't work Pin
MrJOeM21-Nov-06 7:27
MrJOeM21-Nov-06 7:27 
GeneralDoesn't work or compile Pin
afil654514-Sep-05 17:01
afil654514-Sep-05 17:01 
GeneralLack some dependencies Pin
zieQ26-Aug-05 1:23
zieQ26-Aug-05 1:23 
GeneralI Forgot Pin
26-Aug-05 1:30
suss26-Aug-05 1:30 
GeneralDoes it work if there's no &quot;.sln&quot; file. Pin
Johnnyfartpants10-Aug-05 4:45
Johnnyfartpants10-Aug-05 4:45 
GeneralRe: Does it work if there's no &quot;.sln&quot; file. Pin
Stephane Rodriguez.18-Aug-05 20:34
Stephane Rodriguez.18-Aug-05 20:34 
GeneralRe: Does it work if there's no &quot;.sln&quot; file. Pin
Johnnyfartpants18-Aug-05 21:25
Johnnyfartpants18-Aug-05 21:25 
GeneralRe: Does it work if there's no &quot;.sln&quot; file. Pin
pblais30-Apr-07 10:19
pblais30-Apr-07 10:19 
GeneralGreat but how do I install it Pin
pl4gu328-Jul-05 7:38
pl4gu328-Jul-05 7:38 
GeneralRe: Great but how do I install it Pin
Stephane Rodriguez.18-Aug-05 20:35
Stephane Rodriguez.18-Aug-05 20:35 
GeneralRe: Great but how do I install it Pin
Anonymous19-Aug-05 20:53
Anonymous19-Aug-05 20:53 
GeneralRe: Great but how do I install it Pin
jaypal30-Oct-06 23:25
jaypal30-Oct-06 23:25 

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.