Vous voulez voir cette page en français ? Cliquez ici.


or
Sign in to turn on 1-Click ordering.
More Buying Choices
Have one to sell? Sell yours here
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Microsoft(r) Visual C++(r) .Net Step by Step--Version 2003 [Paperback]

Julian Templeman , John Sharp , Andy Olsen
3.6 out of 5 stars  See all reviews (12 customer reviews)
List Price: CDN$ 57.99
Price: CDN$ 36.53 & this item ships for FREE with Super Saver Shipping. Details
You Save: CDN$ 21.46 (37%)
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
Usually ships within 1 to 4 weeks.
Ships from and sold by Amazon.ca. Gift-wrap available.

Book Description

April 23 2003 0735619077 978-0735619074 Revised ed.
Description: 25-Word Description Teach yourself Visual C++ .NET version 2003--and begin developing Microsoft .NET-connected applications--one step at a time. Master core skills with step-by-step lessons and challenge yourself with simple to complex coding problems. 75-Word Description Teach yourself Visual C++ .NET version 2003--and begin developing applications and services for Microsoft .NET--one step at a time. This practical, hands-on tutorial expertly guides you through the fundamentals--from writing managed code to running and debugging your first .NET-ready programs. Work at your own pace through easy-to-follow lessons and hands-on exercises to learn essential techniques. And accelerate your productivity by working with instructive code and best development practices for Visual C++ .NET version 2003. Topics include inheritance and object-oriented programming (OOP) techniques, debugging, exception handling, operator overloading, the .NET Framework version 1.1, integration with Microsoft Windows(R) .NET Server 2003, Windows Forms, Web services, ATL, data access with XML and Microsoft ADO.NET, migrating legacy applications, and more. The authors are highly respected C++ programmers, trainers, and consultants who know how to quickly advance your expertise. Positioning Statement: Your hands-on, self-study guide for building applications and services with Visual C++ .NET version 2003

Product Details


Product Description

About the Author

As a professional consultant, trainer, and writer, Julian Templeman has been involved in using, teaching, and writing about COM for five years. He's taught COM courses to hundreds of students throughout the United Kingdom and Europe, and as a result he knows how to explain complex COM issues to programmers. As a consultant, he's advised large and small companies on COM technology, and he has a firm grasp of the practicalities involved in the everyday use of COM in Windows-based software development.

Julian has also been sole or joint author of 10 programming books, so he has expertise in explaining programming topics in writing. Two of these books concerned COM: the first was the only detailed book on using COM with the Microsoft MFC library, and the second was the best-selling Beginning ATL COM Programming from Wrox Press. Julian's most recent book, published through Microsoft Press®, is Microsoft Visual C++® .NET Step by Step.

On the .NET side, Julian has been using .NET since the first alpha version was handed out at the Denver Professional Developers' Conference in 1998. At the time of writing (April 2002), he has contributed to three .NET books on the market, and he has an in-depth knowledge of the .NET technologies at both overview and detailed levels. In addition, he has recently coauthored Microsoft Official Curriculum course 2558 on writing .NET code using Visual C++ .NET. Julian is also currently running .NET programming courses and doing a small (but increasing) amount of .NET consultancy work.



John Sharp is the author of Microsoft Windows Communication Foundation Step by Step and Microsoft Visual C# 2008 Step by Step. He is a principal technologist for Content Master Ltd., where he works on technology and training projects for a variety of international customers.


Inside This Book (Learn More)
First Sentence
Welcome to the exciting world of programming .NET with Microsoft Visual C++. Read the first page
Explore More
Concordance
Browse Sample Pages
Front Cover | Copyright | Table of Contents | Excerpt | Index | Back Cover
Search inside this book:

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Reviews

Most helpful customer reviews
5.0 out of 5 stars A good book Mar 22 2004
By Adwin
Format:Paperback
I have just found this book from a Closing Down Bookshop .. for only 24$ AU ... First, I am a C++ programmer who want to learn .NET (I use GCC before and never touch MFC or Visual C++ before). I think this book provide everything I need to know about how to use VS.NET and C++ itself. It is clearly explained and easy to follow.
I have compare this book with several book (C++.NET book)...and I found this book is good enough. The other book about C++.NET I found usefull is Visual C++.NET by Deitell (but too expensive than this book lol)
Was this review helpful to you?
2.0 out of 5 stars Not for beginners Mar 6 2004
Format:Paperback
If you already know how to program in Visual C++, you will probably find this book covers new features of C++ .NET rather well, although some of the explanations are very short and terse.

The code is accurate and the examples are easy to load, saving you a ton of keystrokes while allowing you to concentrate on the walkthrough of how the program accomplishes it's task.

However, for the beginner... look elsewhere. For those that know how to code already, take a look at this:

Page 14: A "Hello World" program.

Page 15: OOP programming, encapsulation, polymorphism, inheritance, classes and objects.

Page 21 begins with a "simple" example. Within that example are classes, public and private members, how to access them, pointers, indirection operators, the garbage collector, managed extensions, functions - including the unexplained Console::Write() and Console::WriteLine() functions that perform string output.

Woops! Almost forgot namespaces, #include directives and the "using <mscorlib.dll>". Any beginners know what a .dll file is?

Then we move onto page 26... Eeek!

And, just to make sure you beginners know you're going to be overwhelmed, here's a paragraph from page 23:

"Because of these performance issues, the .NET Framework also supports value types. Value types are objects created on the stack. The variable contains the object itself rather than a pointer to the object. Hence, the variable doesn't have to be dereferenced to manipulate the object, which of course improves performance. To declare a value type class, the __value keyword should be used instead of the __gc keyword. In this case, the variables would have been created on the stack. Instead of declaring pointers for this class and then creating the objects on the CLR heap by using the new operator, the objects would have been declared in the same way as the built-in C++ types and the member vairiables accessed by the dot operator rather than via the dereferencing operator."

Got all that? Hope so, because before you reach page 50, he'll cover declaring variables, assigning values, Arrays, Pointers, References, Constants, Enumerations, Typedefs, the String class, arithmatic operators, relational and logical operators, typecasting, the Ternary Operator, the sizeof() operator, bitwise operators, precedence and associativity.

Neat huh?

Only for experienced, proficient C++ programmers.

Was this review helpful to you?
Format:Paperback
THe purpose of this book really isn't to learn C++, but to learn managed C++ with .net. If you are brand new to C++, id' suggest getting one of the sam's 21 day books.
Was this review helpful to you?
Want to see more reviews on this item?
Most recent customer reviews
4.0 out of 5 stars Good Book
VC ++ Step by Step is a great book for beginners. It explains everything very well and guides you through the steps involved in becoming a VC ++ programmer. Read more
Published on Jan 27 2004
5.0 out of 5 stars Very useful if C++ .net is your development choice
Some of the reviews appear to refer to a C# version of this book - don't know why, but it needs to be looked into by amazon. Read more
Published on Jan 9 2004 by John Harpur
3.0 out of 5 stars Totally agree with bscis99's review.
...P>--This is NOT a book to learn basic computer programming on.
If you have never written any program before STAYAWAY! Read more
Published on Nov 16 2003 by Chi-Hwa Ting
2.0 out of 5 stars Disappointed; mostly a rehash of C++ basics
The first 12 chapters, over 200 pages, discuss the C++ language without a much about C++ .NET. I guess my expectations were too high. Read more
Published on Aug 29 2003 by Martin Sawyer
3.0 out of 5 stars Incomplete Introduction to .Net
This book is not intended for the beginning C++ programmer. It introduces the .NET Framework Library and Windows Forms, but falls short in the topic of Graphical Output. Read more
Published on Aug 17 2003
2.0 out of 5 stars What's the target audience?
First off...the reviewer who criticized the editor for having the wrong book is the one who is wrong:this is C++, not C#. So that reviewer's dismissal should be dismissed. Read more
Published on July 27 2003 by Rick Pierson
5.0 out of 5 stars Much better than expected
I was a little bit worried that a Microsoft Press book might read like a dictionary. That was not the case. Read more
Published on May 19 2003 by Kevin D Runion
5.0 out of 5 stars Response to Jason E. Trout
I wanted to write in response to Jason E. Trout's review. First, I need to state up-front that I was the Technical Editor on the 2003 edition of this book. Read more
Published on April 29 2003 by Eric T. Dettinger
2.0 out of 5 stars Stupified
Being an intermediate C++ programmer myself, I decided to take the venture into the new .NET technology. Read more
Published on April 18 2003 by Jason E. Trout
Search Customer Reviews
Only search this product's reviews

Listmania!

Create a Listmania! list

Look for similar items by category


Feedback


Amazon.ca Privacy Statement Amazon.ca Shipping Information Amazon.ca Returns & Exchanges