Learn To Program With Visual Basic 6

Errata list

Every author endeavors for perfection. My apologies for the typos that have slipped through. We'll do our best to have these corrected for the next printing. (Some of you may not see these errors---we're now on the fourth printing of the book, and some of these have been corrected. By the way, the publisher's solution to the Faberware-Farberware issue was to change later printings of the book to read Faberware everywhere.

Unexpected Error--call John Smiley

This happens when you copy the completed Project (either the one on the CD or one you downloaded somewhere) to your hard drive and try to run it. The reason for that is that the program is 'hard coded' to run from only one location (you'll learn how to fix this in the Objects book using the Path property of the App object).

At any rate, the program can only run from this location

            C:\VBFILES\CHINA

so make sure you copy the files there. Any other location will cause this problem.


General

Chapter 1

Chapter 2

None that I know of

Chapter 3

Chapter 4

Chapter 5

Chapter 6

Chapter 7

Chapter 8

Chapter 9

Chapter 10

strPiece = Mid$(strSource, intCounter, _
   intLengthOfSearchfor)
If strPiece = strSearchFor Then
   Mid$(strSource, intCounter, _
     intLengthOfSearchfor) = strReplaceWith

This should read

strPiece = Mid$(strSource, intCounter, _
   intLengthOfSearchfor)
If strPiece = strSearchFor Then
   Mid(strSource, intCounter, _
     intLengthOfSearchfor) = strReplaceWith

Page 517 explanation describes the Mid statement which is correct.

Chapter 11

Chapter 12

Chapter 13

Chapter 14

Chapter 15

None that I know of

Appendix A


The Number of visitors to this page since September 29, 1998


© 1998-2001, Smiley and Associates, Inc.
Revised - October 11, 2002

webmaster@johnsmiley.com

[