Errata


Print Print Icon

Submit your own errata for this product.


The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.


Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question



Version Location Description Submitted By Corrected
Printed Page 10
last paragraph of 7.

"Now you're ready the drag and drop"
should be
"Now you're ready to drag and drop"

Anonymous 
Printed Page 16
last paragraph

"Close button at top the right of the application windowt."
"window" is misspelled and words "top" and "the" should be reversed.

Anonymous 
Printed Page 74
2nd code fragment

WriteOnly Property CountNumeric() as Integer
Set
...
...
End Get
End Property

NOW READS:
WriteOnly Property CountNumeric() as Integer
Set
...
...
End Set
End Property

Anonymous  Feb 2006
Printed Page 119
Example 4-6

Because "Price" is set to Nullable in the database txtPrice.Text must be converted.
Previous errata points out that the "$" should be removed, but additionally the type
must be converted from String to System.Nullable(Of Decimal)

...
,CType(txtPrice.Text.Replace("$", ""), Global.System.Nullable(Of Decimal)),

Anonymous 
Printed Page 119
AddTitle code block

'--add the new title to the database--
Me.TitlesTableAdapter.Insert(Me.lblISBN.Text, _
Me.txtTitle.Text, _
Me.txtAuthors.Text, _
Me.txtPublisher.Text, _
Me.txtPrice.Text, _
coverImage)

NOW READS:

'--add the new title to the database--
Me.TitlesTableAdapter.Insert(Me.lblISBN.Text, _
Me.txtTitle.Text, _
Me.txtAuthors.Text, _
Me.txtPublisher.Text, _
Replace(Me.txtPrice.Text, "$", ""), _
coverImage)

Anonymous  Feb 2006
Printed Page 135
Figure title

Figure 4-39. Downloading a newer version of the StockQuote application

NOW READS:
Figure 4-39. Downloading a newer version of the Library application



Anonymous  Feb 2006
Printed Page 141
Last paragraph

http://www.oreilly.com/catalog/9780596100711pg

NOW READS:
http://www.oreilly.com/catalog/9780596100711

Anonymous  Feb 2006
Printed Page 160
Item 5.

Book says to set "ContinueDestinationPageUrl" property of Login control.
should be:
"DestinationPageUrl".

Anonymous 


"Lee usually does a great job of selecting just the right level of detail to show new VB 2005 programmers what it's about without burying them at the same time. "
--Dan Mabbutt, About.com