Errata

Visual Basic 2005 in a Nutshell

Errata for Visual Basic 2005 in a Nutshell

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 "Date 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 Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 136
A few paragraphs into the Constraints section

In two of the sample code blocks, the "Of" keyword has been left out. The problem is
in the third and fourth code blocks in the Constraints section. The third block looks
like this:

Dim anyControls As WorkGroup(System.Windows.Forms.Control)
Dim buttonsOnly As WorkGroup(System.Windows.Forms.Button)

These should be changed to insert the "Of" keyword.

Dim anyControls As WorkGroup(Of System.Windows.Forms.Control)
Dim buttonsOnly As WorkGroup(Of System.Windows.Forms.Button)

The same change must be made to the fourth code block. Change it from:

' ----- This doesn't work.
Dim buttonsOnly As WorkGroup(Integer)

to this instead:

' ----- This doesn't work.
Dim buttonsOnly As WorkGroup(Of Integer)

Anonymous   
Printed
Page 136
A few paragraphs into the Constraints section

In two of the sample code blocks, the "Of" keyword has been left out. The problem is
in the third and fourth code blocks in the Constraints section. The third block looks
like this:

Dim anyControls As WorkGroup(System.Windows.Forms.Control)
Dim buttonsOnly As WorkGroup(System.Windows.Forms.Button)

These should be changed to insert the "Of" keyword.

Dim anyControls As WorkGroup(Of System.Windows.Forms.Control)
Dim buttonsOnly As WorkGroup(Of System.Windows.Forms.Button)

The same change must be made to the fourth code block. Change it from:

' ----- This doesn't work.
Dim buttonsOnly As WorkGroup(Integer)

to this instead:

' ----- This doesn't work.
Dim buttonsOnly As WorkGroup(Of Integer)

Anonymous   
Printed
Page 396
Remove "Version Differences" section of the Partition Function (continued from page 394-395)

Anonymous   
Printed
Page 396
Remove "Version Differences" section of the Partition Function (continued from page 394-395)

Anonymous