NO STARCH PRESS
"the finest in geek entertainment"™
Home  | Catalog  | Blog  | Media  | Buy  | About  | Cart


book main | contents | reviews | updates

Page 80: the bottom of the page reads
ProcessFunction = AddressOf CapitalizeName
It should be: ProcessDelegate = AddressOf CapitalizeName

Page 171: the bottom of the code
There is a variable named Lucy.
It should be CurrentPerson instead.

Page 236: the middle of the page reads
This removes a read-only attribute, and leaves the other attributes intact.
FileInfo.Attributes = FileInfo.Attributes Or Not (FileAttributes.ReadOnly)
It should be:
This removes a read-only attribute, and leaves the other attributes intact.
FileInfo.Attributes = FileInfo.Attributes And Not (FileAttributes.ReadOnly)

Page 359: the bottom of the page reads
"At the same time, any dependent assemblies will also be added, including a set of .NET redistributable files. ... To create a smaller and speedier setup, you can exclude these files, and manually install the .NET framework files on the destination computer."
Note: In this release, the .NET redistributable files should never be included. Instead, a separate redistributable called dotnetfx is needed, which can be installed manually. Information about how to find and install dotnetfx can be obtained from http://msdn.microsoft.com/library/en-us/dnnetdep/html/dotnetfxref.asp.

book main | contents | reviews | updates



Copyright 2010 by No Starch Press