VB.NET Language in a Nutshell, 2nd Edition by Paul Lomax, Ron Petrusha, Steven Roman This errata page lists errors outstanding in the most recent printing. If you have technical questions or error reports, you can send them to booktech@oreilly.com. Please specify the printing date of your copy. This page was updated December 23, 2002. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification Confirmed errors: [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.