Errata

VB.NET Language in a Nutshell

Errata for VB.NET Language 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 324
"Rules at a glance" - first paragraph

it states if maximum_value is greater than initial_value, then the loop is ignored.
It should be if maximum_value is LESS THAN initial_value the loop is ignored. i.e.
'for counter = 1 to 5' will execute, but 'for counter = 1 to 0' will be ignored.

AUTHOR: Sounds like a mistake to me.

Anonymous