Wiley.com
Print this page Share

Professional VB 2005

ISBN: 978-0-7645-7536-5
Paperback
1104 pages
November 2005
Professional VB 2005 (0764575368) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
Code Replacement / Errata Download
Code Replacement for this title can be found at:
http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764575368.html

http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764575368,descCd-download_code.html
04/18/2006
4 Updated Chapter 4 Files
Download updated Source files for Chapter 4 from the download section.
3/10/06
25 Error in Text
Next to last sentence:
Compile tab

should be:
7/20/06
31 Error in Text
Line 6:
Form1.Design.vb

should be:
Form1.Designer.vb
7/19/06
34 Error in Text
Under the heading 'Adding a Control and Event Handler', the first line:

"The button you've dragged..."
Should be:
"Drag a button control from the toolbox on to the form. The button you've dragged..."
1/10/06
35 Error in Reference
Line before listing:
Chapter 8

should be:
Chapter 9
7/20/06
46-47 "Show Tasks" option
In Chapter 2 under the "The Task List",

"Show Tasks" is listed in two places.

The Show Tasks option was removed in the release version. The release version has a drop down that allows for the selection of tasks.

It should also be noted that in the release version, the build results with the errors and warnings is it's own window and is separate from the Task List.
2/23/06
49 Error in Text
"8. Select Tool -> Macros -> Record Temporary Macro"
should be:
"8. Select Tools -> Macros -> Macro Explorer"
3/23/06
69 Error in Text
Paragraph 4, lines 1 and 2:
"Object Strict"

Should read:
"Option Strict"

AND

Line 3 or "Char and Byte" section:
It is then assigns

should be:
It is then assigned
2/21/06
74 UBound Function Error
Second line under the heading "the UBound Function":

"... from arrMyIntArray2(0) to arrMyIntArray1(3)."
Should be:
"... from arrMyIntArray2(0) to arrMyIntArray2(3)."
1/10/06
133 Error in Text
figure 4.5, the window should not include Mary 48 as the first item. Remove the first instance of Mary 48 from the window.
11/20/05
104, 105, 108 Inconsistant Prefix
104, 105, 108 you use fields with type prefix, e.g. mstrName while earlier in the chapter they were declared without it, e.g. mName
2/14/06
938 Error in Code Formatting
In the code example under item 9, there are several text formatting errors. The two important errors follow:

Line 6: Dim reader should start on a new line
11/20/05
938 Error in Code Formatting
In the code example under item 9, there are several text formatting errors. The two important errors follow:

Line 10: Dim posEnd should start on a new line
11/20/05
956-959 Missing Step for "Creating your Web Server"
There should be a new step between 3 and 4 for "Creating your Web Server":

3. Add the private members to the Class. In addition, add a constant to identify the port number the service will use for listening. Select a port that currently isn't in use on your computer. I'll use 9090.

Private listener As New HttpListener()
Private theService As String

Private Const PORT As Integer = 9090
3/1/06
569 Error in TExt
control.Name Property (1stSource, 1stTarget) does not accept a digit as a first character.

From VB Documentation: When you name an element in your Visual Basic application, the first character of that name must be an alphabetic character or an underscore. Note, however, that names beginning with an underscore are not compliant with the Common Language Specification (CLS).
The documentation I sighted was the MSDN Online library section on "Visual Basic Naming Conventions."
The link to that article is here: http://msdn.microsoft.com/en-us/library/0b283bse(VS.80).aspx (http://msdn.microsoft.com/en-us/library/0b283bse(VS.80).aspx)
06/05/08
Back to Top