Internet Cross Logo
Internet Cross your one stop web tutorial website
Your Ad Here

Back to Microsoft Visual Basic 2008 Step by Step product information


Back to your previous page

<< Previous

Spotlight customer reviews:

Customer Rating: Average rating of 2/5Average rating of 2/5Average rating of 2/5Average rating of 2/5Average rating of 2/5
Summary: Good for beginners
Comment: Good book for who do not have some experience with VB programming but not for those who wanted some in-depth knowledge.

I found some free documentation of vb.net 2005 and, to me, was very helpful.

Customer Rating: Average rating of 4/5Average rating of 4/5Average rating of 4/5Average rating of 4/5Average rating of 4/5
Summary: Great Book
Comment: This book is great for starters and pro alike. But you need to keep your mind open as you do the exercises. For instance i encountered this problem while i was doing MyCheckBox exercise. The author gave the code in the book as

If CheckBox1.Checkstate = 1 Then
PictureBox1.Image = System.Drawing.Image.FromFile _
("c:\vb08sbs\chap03\calcultr")
PictureBox1.Visible =True
Else
PictureBox1.Visible = False
End IF

and

If CheckBox2.Checkstate = 1 Then
PictureBox2.Image = System.Drawing.Image.FromFile _
("c:\vb08sbs\chap03\copymach")
PictureBox2.Visible =True
Else
PictureBox2.Visible = False
End IF

I got this kind of message while trying to debug the program
"A first chance exception of type 'System.IO.FileNotFoundException' occurred in System.Drawing.dll"

the code should have been given as


If CheckBox1.Checkstate = 1 Then
PictureBox1.Image = System.Drawing.Image.FromFile _
("c:\vb08sbs\chap03\calcultr.bmp")
PictureBox1.Visible =True
Else
PictureBox1.Visible = False
End IF
and

If CheckBox2.Checkstate = 1 Then
PictureBox2.Image = System.Drawing.Image.FromFile _
("c:\vb08sbs\chap03\copymach.bmp")
PictureBox2.Visible =True
Else
PictureBox2.Visible = False
End IF

instead.I could not figure out the problem at first until i compared the code i wrote with that of the completed exercise the author gave.
Another minor problem i encountered was in chapter 4 pg 116. The author assumes that we all are using a Microsoft Office suite that has Microsoft publishers file,but it was not the case for me as I am using Microsoft Office student and home edition which does not have Microsoft publishers files, so i was not able to complete this exercise as i was supposed to.
Microsoft Visual Basic 2008 Step by Step

Customer Rating: Average rating of 5/5Average rating of 5/5Average rating of 5/5Average rating of 5/5Average rating of 5/5
Summary: Step by Step says it all
Comment: I am almost finished with this book. I am working my way through this and one of the "dummies" guides at the same time. I am getting much more out of this book. The examples are clear. Everything has worked (so far!) and I like the general pace. A side note: make sure to check out all the (free) help on the web if you are learing a new language! Before I beat my head against the wall too long, normally a quick google will help point me the right direction.

Customer Rating: Average rating of 5/5Average rating of 5/5Average rating of 5/5Average rating of 5/5Average rating of 5/5
Summary: Good idea
Comment: It's a excellent book. The very good idea is to include a copy of the book (PDF file) in in the CD of exercises that accompanies the book. Better idea should be a copy of the book for the the Microsoft ebook reader. Or both.

Customer Rating: Average rating of 5/5Average rating of 5/5Average rating of 5/5Average rating of 5/5Average rating of 5/5
Summary: Michael Halvorson Does It Again!
Comment: Michael H. is now an old hand at producing VB Step by Step books, and it shows. His treatment of the subject is thorough and to-the-point, as you can see by looking inside the book at the Table of Contents (above). His style is easy to follow, and your confidence level at the end will be high if you carefully follow his lead through this book. If his "Database and Web Programming" section at the end of the book doesn't pique your interest, nothing will. By inserting this section he shows you where VB 2008 is headed.

My biggest complaints are minor: 1) he wasted too much ink telling us how things were done back in the days of VB 6.0. Programmers have had about four years to get over that, Michael, but thanks for an otherwise very useful book, and 2) a few menu calls were to menu functions that don't exist. (That's inevitable when a book is based on pre-release software. None of the errors were difficult to overcome.)

 


<< Previous

Showing page 2 of 2
1 | 2 |