Wiley - Publishers Since 1807

United States Change Location

cart.gif CART |  MY ACCOUNT |  CONTACT US |  HELP    
Cover image for product 0470187425
Mastering Microsoft Visual Basic 2008
ISBN: 978-0-470-18742-5
Paperback
1118 pages
March 2008
US $59.99 Add to Cart

This price is valid for United States. Change location to view local pricing and availability.

  • Description
  • Table of Contents
  • Author Information
  • Errata
  • Download

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
3 87 Error in code
In the second string of code on the page, first line:
The text reads "If (date1 < #1/1/2008)..."
It should read "If (date1 < #1/1/2008#)..."
Date values should be enclosed in hash signs.
5/2/08 1st
3 94 Text correction
In the Sidebar at the bottom of the page headed Do Not Manipulate the Loop's Counter, the last sentence contains an error.
"To jump out of a For...Next loop prematurely, use the Next For statement."
Should read: "To jump out of a For...Next loop prematurely, use the Exit For statement."
5/2/08 1st
391 Error in Code
Debug.WriteLine("194 - 289 centimeters is" & (MU1 - MU2).ToString & " meters")
The negative of 1.94 is -1.94

should be:

Debug.WriteLine("194 - 289 centimeters is" & (MU1 - MU2).ToString & " meters")
194 - 289 centimeters is -.95 meters
04/23/2008
392 Errors in Figure 10.10
WHERE FIGURE SHOWS:

1 meter and 198 centimetes is 3.89 meters

it should show

1 meter and 198 centimetes is 2.89 meters

WHERE FIGURE SHOWS:

194 + 289 centimeters is 5.83 meters

it should show

194 + 289 centimeters is 4.83 meters

WHERE FIGURE SHOWS:

194 - 289 centimeters is -0.195 meters

is should show

194 - 289 centimeters is -0.95 meters
04/23/2008
11 407 Error in Listing 11.1
The third line of code, "Dim delEntries As ArrayList" is superfluous, and should be deleted.
5/2/08
22 813 Error in code
The third line of code on the page reads:
"Command.Parameters.Add("@country", "Italy")
It should read:
"Command.Parameters.AddWithValue("@country", "Italy")
5/2/08 1st