Customer Reviews


16 Reviews
5 star:
 (5)
4 star:
 (5)
3 star:
 (3)
2 star:
 (3)
1 star:    (0)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


9 of 10 people found the following review helpful:
5.0 out of 5 stars VB.Net Language In A Nutshell (2nd Edition)
My experiences with 'Nutshell' books have been both bad and
good. I wasn't sure which I would get with VB.Net Language
in a Nutshell. After reviewing this book I am happy to say
this is a good one. Not only good, superb.

I have used this book about 20 times in the last 2 weeks
when I needed to look something up quickly. The funny thing
was...

Published on November 23, 2002 by Christopher Taylor

versus
7 of 7 people found the following review helpful:
3.0 out of 5 stars Quick read but missing key topics
This book is a good light easy to carry overview but really short on some very significant details (com interop in particular) and has too much on useless topics like how to draw a circle on a form. It works as a readable introduction to vb.net but comes up short as a reference. After reading it I found myself constantly failing to find the information I needed...
Published on April 15, 2002 by Stephen Boisvert


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

7 of 7 people found the following review helpful:
3.0 out of 5 stars Quick read but missing key topics, April 15, 2002
This book is a good light easy to carry overview but really short on some very significant details (com interop in particular) and has too much on useless topics like how to draw a circle on a form. It works as a readable introduction to vb.net but comes up short as a reference. After reading it I found myself constantly failing to find the information I needed.

Great new additions to vb.net such as regular expressions are largely ignored and the coverage of the .NET framework is very thin.

If you are an experienced vb developer you really should look for a book with more information on how to leverage your existing knowledge. Look for information on com interop and porting.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


9 of 10 people found the following review helpful:
5.0 out of 5 stars VB.Net Language In A Nutshell (2nd Edition), November 23, 2002
By 
This review is from: VB. NET Language in a Nutshell (2nd Edition) (Paperback)
My experiences with 'Nutshell' books have been both bad and
good. I wasn't sure which I would get with VB.Net Language
in a Nutshell. After reviewing this book I am happy to say
this is a good one. Not only good, superb.

I have used this book about 20 times in the last 2 weeks
when I needed to look something up quickly. The funny thing
was that the pile of books I usually keep close by on my
computer table seemed to diminish the more I used it.

I have really only used the VB and VBScript languages (no C
or C++, and just a tiny bit of Java), so going with VB.Net was
definitely the path of least resistance when starting to work
with ASP.Net. This book will be a great asset to someone who
wants to stay in the VB world. Throughout the book you will
find VB.Net / VB 6 differences pointed out. These tips will
really help during the transition to VB.Net.

Chapter by Chapter Summary:

Chapter 1: Introduction
This very short chapter gives a little background on VB and
VB.Net. It is very brief, and I do not know if it is really
needed. Most VB people will know the history of VB, and anyone
getting this book will probably have heard all the info on
VB.Net that is given. That being said it may just be in for
the non-VB people getting the book.

Chapter 2: Program Structure
This chapter goes in to the details and nuts-n-bolts of what
the structure of a VB program is. It also gives quick
overviews of functions, sub procedures, property procedures,
events, console apps and window forms apps.

Chapter 3: Variables and Data Types
This is a good chapter. It talks about everything from
variable properties and scope to arrays and passing objects.
VB data types, binding, and arguments are among the other
things covered. All topics have very concise definitions and
meaningful examples. No extraneous fluff.

Chapter 4: Introduction to Object-Oriented Programming
The chapter title pretty well says what this chapter is about.
Encapsulation, Inheritance, Interfaces, Polymorphism, etc. are
all discussed with a VB.Net twist. In reality this chapter and
chapter 1 could have been integrated together, but I won't bust
them too bad on this since I really liked their information on
Garbage Collection.

Chapter 5: The .Net Framework: General Concepts
This is a short 6-page chapter on general .Net Framework
information. Briefly touches on Namespaces, Assemblies, and the
CLR.

Chapter 6: The .Net Framework Class Library
This is another very brief chapter that highlights just a few
of the more than 90 Namespaces in the .Net Framework Class
Library.

Chapter 7: Delegates and Events
This chapter is an 8-page brief on delegates, events, and event
binding. Not much more to really say.

Chapter 8: Attributes
This 10-page chapter goes into Attributes. Their use and syntax,
as well as instruction on using custom attributes is covered.

Chapter 9: Error Handling in VB.Net
This chapter does a great job of explaining Error Handling in
VB.Net. The difference between error detection and error handling
is defined. Structured (Try, Catch, Finally) and unstructured
error handling are discussed. Exception classes, logical errors,
and error constants are also briefly talked about. This is a great
overview chapter.

Chapter 10: The Language Reference
This is THE chapter. This almost 450-page chapter alone is worth
the price of the book. It is a listing of the VB.Net language elements.
There are many things I really like about the way that they cover
the language elements. Besides return values and descriptions of
the elements, they also have included 'Rules at a glance', which
quickly informs you of all the important information as to the
usage of the element. Another thing I like is the 'Programming tips
and gotchas' section that some of the elements have. All are full
of useful information that will save you time. The thing I probably
like the most is the 'VB.NET / VB 6 Differences' blurbs they give
when there is a difference in the language element from VB 6 to
VB.Net. Those blurbs are invaluable to someone transitioning from
the VB 6 world. Excellent, excellent, excellent chapter. Well done.

Appendix A: What is new and different in VB.Net
This appendix specifically covers the changes from VB 6 to VB.Net.
This is an excellent supplement to the 'VB.NET / VB 6 Differences'
blurbs in chapter 10. I also like that they give a listing of the
obsolete programming elements that have been removed from VB.Net.

Appendix B: Language Elements by Category
This is an excellent supplement for chapter 10. It helps you find
which language elements you need to use when approaching a
specific kind of situation. It is a very nice and useful appendix.

Appendix C: Operators
This appendix covers the 4 kinds of Operators in VB.Net. They are
Arithmetic, Assignment, Comparison, and Logical. Order of precedence
is also covered. Excellent reference material.

Appendix D: Constants and Enumerations
This is a reference for all the built-in Constants and Enumerators
for VB.Net. Again, great reference material.

Appendix E: The VB.Net Command-Line Compiler
A reference for the VB.Net command-line compiler. The switches are
well explained.

Appendix F: VB 6 Language Elements Not Supported by VB.NET
This gives an alphabetical listing of the language elements in VB 6
that are not present in VB.Net. Once again, this reference will be
very helpful for those transitioning to VB.Net from VB 6.

Well folks, without a doubt this book is a 10 out of 10. Well done!

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 6 people found the following review helpful:
5.0 out of 5 stars Easy Way To Convert To VB .NET, March 31, 2002
By 
P. Pham "whathot" (vancouver, british columbia Canada) - See all my reviews
(REAL NAME)   
Just when you though it was time to kick back and enjoy your accomplishment in the VB world, someone would just had to come and messed it up - "So, have you look into VB .NET yet?". Tell you the truth, a few months ago, you would have to drag me kicking-and-screaming to get me in the .NET water with my VB swimsuit! With all the rumor of many changes to VB, the idea of re-learning VB was like decaffeined coffee!

So for me to convert to VB .NET, it has to be quick and painless. And this book did just that. It cuts right through the red tape and gets straight to the core. VB .NET language are explored from A to Z. Aside from being labeled as a language reference, the authors go extra the mile to include dedicated chapters on significant topics in VB .NET that are new to VB such as class inheritant, new datatypes, .NET concept and framework. Not to mention the little details such as tips and gotchas added along side with the reference section which make this book quite enjoyable to read too.

I recommend this book for the VB fan, including those who are reluctant to convert to VB .NET like I was. This book is will ease your transition to VB .NET quickly and efficiently.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 6 people found the following review helpful:
4.0 out of 5 stars VB.NET but not in a nutshell, October 17, 2001
By A Customer
The book is written for a VB6 guru who is about to write some new code in VB.NET. It features a decent introduction to what's new in VB.NET and a comprehensive list of changes. The best part of this book is its large reference section, which contains a subset of VB.NET's statements, functions and classes, including comparison to VB6 and potential pitfalls. What I'm missing is instructions how to migrate existing VB6 code to VB.NET. Also, the writer's attitude is a big too positive towards the .NET framework. I would've expected a bit more critical attitude on the numerous, sometimes unnecessary, changes VB.NET seems to present. It takes time to read this book, so I wouldn't call it a nutshell, rather a good reference book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


7 of 8 people found the following review helpful:
4.0 out of 5 stars Not a starter, November 1, 2001
As with most O'Reilly Nutshell books, this book is more a reference than a coder's primer. Unlike most, however, it is a bit lacking on how to code in the language.

This is not all bad. The small size makes this a very useful book for the experienced coder to carry on client sites. The reference material is quite thorough and easy to navigate. It is this reason, alone, that added this book to my library.

If you are trying to learn VB.NET, I am not certain this book is your first choice. Of course, if you have purchased other O'Reilly titles, you are already familiar with this.

If I were to pick one audience for this book, it would be the VB programmer who was looking for a way to upgrade to the new VB .NET language. The appendices, esp. A and F, will help them move into the new technology quickly.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 7 people found the following review helpful:
4.0 out of 5 stars VB.Net Concise and Detailed, October 3, 2001
By 
VB.Net in a Nutshell is currently the best abridged book on that subject. I prefer the conciseness of a Nutshell book to a rambling discussion. Give me syntax, semantics, tips and I'll figure out the rest. Time to move on.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 3 people found the following review helpful:
5.0 out of 5 stars This is a "In a Nutshell" book, January 28, 2003
By 
futurefruit (-always sunny- Greece) - See all my reviews
This review is from: VB. NET Language in a Nutshell (2nd Edition) (Paperback)
I think the book stands up to it's title. It's a quick tour of the VB.NET language for the pro(specially for VB6 users). After i took some courses in VB.NET i was looking for books to read further and this out of many i read has the most clarifying and to the point examples. Certainly has not detailed explanations but that's not it's purpose. It's an overview and i think a bright one.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars Another Solid Reference by O'Reilly, November 26, 2002
By 
"wlmoseley" (Bakersfield, CA United States) - See all my reviews
Let me say this: THIS IS NOT A "HOW TO" BOOK. Aside from that, anyone who is using VB .NET will love and rely on this valuable and well-organized reference. The "In a Nutshell" series by O'Reilly is among the best out there.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


4 of 5 people found the following review helpful:
4.0 out of 5 stars CD not for VS.NET 2003, June 11, 2003
By A Customer
This review is from: VB. NET Language in a Nutshell (2nd Edition) (Paperback)
A very handy reference manual. Be aware that the included CD will not integrate the book into Visual Studio.NET 2003.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 3 people found the following review helpful:
4.0 out of 5 stars New Edition Coming, March 27, 2002
By 
Noticed this in my "personal recommendations" and then saw
that there's a new edition coming out soon (O'Reilly are
very good at making that info public). So if you don't NEED
this NOW, you may want to wait.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

This product

VB. NET Language in a Nutshell (2nd Edition)
VB. NET Language in a Nutshell (2nd Edition) by Steven Roman (Paperback - Apr. 2002)
Used & New from: $0.01
Add to wishlist See buying options