What's with VC++ 2005 Standard?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I've been trying to find some info on Visual C++ 2005 Standard on
Microsoft's site, but wasn't able to find any. There's only VC++ 2005
Express Edition, and Visual Studio 2005 Standard, Professional and Team
System. What is the future of VC++ 2005 Standard? Can I somehow buy only
VC++ in VS 2005 Standard?
 
Mihajlo said:
Hi all,

I've been trying to find some info on Visual C++ 2005 Standard on
Microsoft's site, but wasn't able to find any. There's only VC++ 2005
Express Edition, and Visual Studio 2005 Standard, Professional and
Team System. What is the future of VC++ 2005 Standard? Can I somehow
buy only VC++ in VS 2005 Standard?

No, you cannot. The only stand-alone version of VC++ is the Express
Edition..

-cd
 
Mihajlo Cvetanovic said:
Hi all,

I've been trying to find some info on Visual C++ 2005 Standard on
Microsoft's site, but wasn't able to find any. There's only VC++ 2005
Express Edition, and Visual Studio 2005 Standard, Professional and Team
System. What is the future of VC++ 2005 Standard? Can I somehow buy only
VC++ in VS 2005 Standard?

To add emphasis to what Carl told you correctly, The Express Editions are
the 2005 descendants of the 2002/2003 Standard language editions. The
Express Editions can be downloaded at no cost here (so it costs you nothing
to see if VC++ Express will suit you):

http://msdn.microsoft.com/vstudio/express/visualc/
 
pvdg42 said:
To add emphasis to what Carl told you correctly, The Express Editions are
the 2005 descendants of the 2002/2003 Standard language editions. The
Express Editions can be downloaded at no cost here (so it costs you nothing
to see if VC++ Express will suit you):

http://msdn.microsoft.com/vstudio/express/visualc/

Thanks for the suggestion. I have just started the download and it will
take a while. It seems that I need to download Platform SDK as well, and
fiddle with the installation a bit, but putting that aside there's only
one question: what functionality of the VC++ 2003 Std is not supported
in VC++ 2005 Express? Any comments on that?
 
Mihajlo said:
Thanks for the suggestion. I have just started the download and it will
take a while. It seems that I need to download Platform SDK as well, and
fiddle with the installation a bit, but putting that aside there's only
one question: what functionality of the VC++ 2003 Std is not supported
in VC++ 2005 Express? Any comments on that?

MFC and ATL will be the most missing features I guess.

On the other hand, VC2005 Express give you the optimizing compiler,
which was lacking in VC2003 Standard.

Arnaud
MVP - VC
 
MFC and ATL will be the most missing features I guess.

On the other hand, VC2005 Express give you the optimizing compiler,
which was lacking in VC2003 Standard.

Lack of MFC really is a misfortune. Is there a way to install it
separately, as with SDK? Or some other free library with wizard support?
 
Mihajlo said:
Lack of MFC really is a misfortune. Is there a way to install it
separately, as with SDK?
Not that I am aware of : MFC are to be payed.
Or some other free library with wizard
support?
There are plenty of available GUI libraries, which most of the time have a
far better object conception that MFC, but lack the "cool & pretty" wizards
and ease of use from within VC :
- ATL + WTL
- Win32GUI
- QT
etc...

Arnaud
MVP - VC
 
Not that I am aware of : MFC are to be payed.

that's not 100 % correct.
MFC 4.2 is installed with the Windows DDK. you can download it for free
these days, so you'd get free MFC.
This version of MFC is not the latest one, but for standard things it will
work.

that still won't give you the wizards in VC express, but you will probably
be able to build existing MFC programs, even if it is against a previous
version.

the DDK team was looking into bringing MFC up to date, according to a post
in the DDK list, but that's only a future possibility.

atl2.1 and atl3.0 are included as well.

kind regards,
Bruno.
 
Back
Top