I am a student taking c++ programming I purchased a program Visual Studio.net
(2003 ver), The college is using visual C++ 6.0. How can I use my porgram to
write programs in Ms 6.0. Do I have to buy C++ 6.0 I allready purchased on
program.
Antti Keskinen - 22 Feb 2005 07:49 GMT
Hello !
Try Googling for a tool called 'project converter' for Visual Studio .NET.
This allows converting .NET solution files into 6.0 workspace files.
Alternatively, you can write code with .NET, test it, and then copy away the
source and header files, generating a new blank workspace with 6.0 and
adding the ready files into the project. This is what I do due to version
differences.
-Antti Keskinen
>I am a student taking c++ programming I purchased a program Visual
>Studio.net
[quoted text clipped - 3 lines]
> on
> program.
Severian - 22 Feb 2005 09:07 GMT
>I am a student taking c++ programming I purchased a program Visual Studio.net
>(2003 ver), The college is using visual C++ 6.0. How can I use my porgram to
>write programs in Ms 6.0. Do I have to buy C++ 6.0 I allready purchased on
>program.
Also, don't used any "managed extensions" which are new to VC2003.
Write straight C/C++.
--
Sev
Škrat Bolfenk - 26 Feb 2005 00:13 GMT
.... or :
- turn off the /clr switch
or
- add #pragma unmanaged to every source file in your project
I think this is all ... take a look in the property panel of your project
and config it the way you need
> I am a student taking c++ programming I purchased a program Visual Studio.net
> (2003 ver), The college is using visual C++ 6.0. How can I use my porgram to
> write programs in Ms 6.0. Do I have to buy C++ 6.0 I allready purchased on
> program.