473,770 Members | 1,700 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VC++ 2005 & books

Hi,

I'm a VC++ programmer with around 5 years of experience using VC++6. My
company have plans to migrate to VS 2005 in the future. I know C++/CLI is
pretty new and there aren't too many books on it but I wonder if someone can
suggest some titles for me.

Is the latest version of VC++ a lot different from VC++ version 2003? I was
thinking of getting MS Press book "Microsoft Visual C++ .NET Step by Step
Version 2003" which has a lot of good reviews.
May 21 '06 #1
5 1764
> I'm a VC++ programmer with around 5 years of experience using VC++6. My
company have plans to migrate to VS 2005 in the future. I know C++/CLI is
pretty new and there aren't too many books on it but I wonder if someone
can
suggest some titles for me.

Is the latest version of VC++ a lot different from VC++ version 2003? I
was
thinking of getting MS Press book "Microsoft Visual C++ .NET Step by Step
Version 2003" which has a lot of good reviews.


I have this one:
http://www.amazon.com/gp/product/189...lance&n=283155
but it is for VS2002 and 2003.
While the general information about marshalling and things like that is
still usefull, C++/CLI is a competely new language.
As such, a book for VS2003 will not help you with that.

Several books on C+/CLI are in the making, by Stan Lippman and Marcus Heege
among others, but they are not yet released.
the only one I found on amazon that is actually released is this one:
http://www.amazon.com/gp/product/159...lance&n=283155
but I cannot vouch for its quality, never having read it.

--

Kind regards,
Bruno van Dooren
br************* *********@hotma il.com
Remove only "_nos_pam"
May 21 '06 #2
On Sun, 21 May 2006 08:22:55 +0200, techie <te****@nospam. biz> wrote:
Hi,

I'm a VC++ programmer with around 5 years of experience using VC++6. My
company have plans to migrate to VS 2005 in the future. I know C++/CLI
is
pretty new and there aren't too many books on it but I wonder if someone
can
suggest some titles for me.

Is the latest version of VC++ a lot different from VC++ version 2003? I
was
thinking of getting MS Press book "Microsoft Visual C++ .NET Step by Step
Version 2003" which has a lot of good reviews.

Hello all.

If you will use MFC/Native programming you don't need a specific 2005
book, but If you are going to program in C++/CLI you need to learn that
language.

Frasier book has based in beta version of C++/CLI and contains some
erroneous explanations, and is a little bit unspecific in some tricks of
C++/CLI, but I?ve learned to program with it.

Another book is this:
http://www.amazon.com/gp/product/073...lance&n=283155
but I've not reviewed/read it.

--
Visita mi blog: http://rfog.blogsome.com
Libros, ciencia ficción y programación
=============== =============== ==========
La enorme multiplicación de libros, de todas las ramas del conocimiento,
es uno de los mayores males de nuestra época.
-- Edgar Allan Poe. (1809-1849) Escritor estadounidense.
May 21 '06 #3

"techie" <te****@nospam. biz> wrote in message
news:Vc******** *************** *******@biscit. net...
Hi,

I'm a VC++ programmer with around 5 years of experience using VC++6. My
company have plans to migrate to VS 2005 in the future. I know C++/CLI is
pretty new and there aren't too many books on it but I wonder if someone
can
suggest some titles for me.

Is the latest version of VC++ a lot different from VC++ version 2003? I
was
thinking of getting MS Press book "Microsoft Visual C++ .NET Step by Step
Version 2003" which has a lot of good reviews.

This book may be a bit simplistic for you, but it does cover the basics of
C++/CLI.

http://www.wrox.com/WileyCDA/WroxTit...764571974.html
--
Peter [MVP Visual Developer]
Jack of all trades, master of none.
May 21 '06 #4
techie wrote:
I'm a VC++ programmer with around 5 years of experience using VC++6. My
company have plans to migrate to VS 2005 in the future. I know C++/CLI is

I hope you are aware that switching to newer compiler does not mean you also
have to change programming language (as C++/CLI is NOT C++). If your company
has plans for migration to C++/CLI , that is porting all code (and/or writing
new one) on .NET then go ahead and learn about .NET and THEN C++/CLI . Be
aware that this is steep learning curve. C++/CLI is much more complex than
simple sum of complexity of these two: standard C++ and .NET , as it also
defines interactions between them two, and these interactions are anything but
simple. Once you start writing in C++/CLI your programs will REQUIRE .NET
framework 2.0 to work (as a runtime environment). But this is NOT the only way
to go with VC8.

It's quite possible that your employer just find newer version of Visual C++
compiler better than VC6 (rightly so, but there are some bugs and annoyances
that will be fixed in SP1 - to be released later this year) and then you do
not have to learn whole new languague. But there is also good chance you will
find your existing C++ source code not working any more with new compiler,
since VC6 does not actually implement C++ as it is defined in ISO standard
(VC6 was released before the standard, and standard is already 8 years old),
while VC8 is pretty good at implementing almost all ISO standard requirements.
This means that source code that was invalid or nonportable from the ISO C++
standard point of view, BUT was accepted by VC6 and produced programs that
(somehow) did what you expected them to do, might be refused by VC8 or produce
programs that crash. There are some wonderful books on standard C++ , I
heartily recommend all three parts of "Exceptiona l C++ " by Herb Sutter AND
third edition of "Effective C++" by Scott Meyers. You will also benefit from
books by Dewhurst and Wilson, and some good language reference will be
probably handy too - "C++ Primer" (4th edition) by Lippman, Lajoie and Moo is
the one I recommend. Oh, and you definitely want good C++ library reference -
Josuttis is the one to buy.
B.
May 21 '06 #5
Thanks everyone for your suggestions.
May 22 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
1698
by: nick | last post by:
i haven't learnt c++ before ,if i want to learn vc++,do i need to buy a c++ book to learn before i learn vc++? or some vc++ books are suitable to someone who hasn't learnt c++ before? any suggestions? thanks!
2
2777
by: SHC | last post by:
Hi all, I read the Microsoft KB Q815658 "How to read the XML data from a file using Visual C++ .NET" and tried to follow the steps of executing its source code in my VC++ .NET 2003 under Console Application (.NET). I lauched a project 'Q815658XMLRead' (see the attached .cpp file below) and did the "Build" and I got the following 2 errors: c:\Documents and Settings\Scott H. Chang\My Documents\Visual Studio...
2
1098
by: Al | last post by:
I'd installed VC++ Express 2005 beta 2 but I couldn't create new projects from templates or when I opened an existing solution, I couldn' build it: 'exe not found!' The same happened whith VC++.NET 2003 (a friend's). Is it a framework problem? (I've got the 1.1)
2
1279
by: Asfar | last post by:
Hi, I am just starting of VC++ .Net 2005. Can someone suggest of any good books or any good websites for beginners. Thanks, -Asfar
1
1345
by: Charles MacLean | last post by:
I want to install SQL on the same machine as VS 2005 Pro for development. While trying to install the version of SQL that comes with the VS 2005 Pro I'm getting error messages and the SQL engine will not start. Is it possible to have the SQL install on the same machine as the VS 2005 or do I need to install the personnel edition instead? What should I do? Charles MacLean MTS, Inc.
4
3682
by: JoeyD | last post by:
With SQL 2005, did Microsoft introduce login triggers? I seem to remember hearing something about it but, I don't remember exactly what I heard. Thanks, JD
1
1505
by: Chuck | last post by:
Hi, I have installed a trial version of VC++ Express 2005 with the budled SQL Server. After creating a C++ Forms prototype, with some tables into a database file named Test1.mdb, now I want to make ODBC available this local database. What are the steps required to add and ODBC entry so any ODBC-capable program may access my prototype? I know in advance the location of the database file and log file, know it is local (so the server is...
2
4862
by: M Bourgon | last post by:
I'm trying to automate an auto-export of a table on a daily basis, using BCP. I'm using native format for the BCP because the text in one of the fields can encompass pretty much any ASCII characters, and using the other options (including the null terminator, stuff like |||, etc) hasn't worked particularly well. So, I'm archiving out a table on a daily basis. I want to script out the table at the same time; that way, if there are any...
7
8454
by: Norman Diamond | last post by:
A project depends on VC runtime from Visual Studio 2005 SP1, and DotNet Framework 2. Options are set in the setup project properties, so if these two dependencies are not already installed then this installer will install them. But what about the situation where VC runtime has already been installed? In fact it's been installed twice. Although the project was built on a Windows XP system with Visual Studio 2005 SP1 and the results were...
0
9439
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10017
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9882
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8905
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7431
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5326
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3987
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3589
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2832
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.