Wiley.com
Print this page Share

Beginning Visual Basic 2010

ISBN: 978-0-470-50222-8
Paperback
724 pages
March 2010
Beginning Visual Basic 2010 (0470502223) 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
42 Error in Text
Page 42 - Comments

"Comments and whitespace and the two primary means..."
Second "and" should be "are"

List item #1 - "valusssse" should be "values"

List item #1 - "inNumber" should be "intNumber"
08/06/2010
45 Error in Text
second paragraph:

Now reads: "...you?ll see how to add, subtract, multiple, and divide integer numbers."

Should read: "...you'll see how to add, subtract, multiply, and divide integer numbers."
11/15/2011
47 Error in Code
The line "intNumber -= 2" under "Try It Out" should be bold.
06/18/2010
117 Error in Text
Reads:

'Tell the user MessageBox.Show("Found it, exiting the loop now.", "Loops")"

Should read:

'Tell the user
MessageBox.Show("Found it, exiting the loop now.", "Loops")
09/08/2010
5 129 Error in Code
A portion of the code example is missing boldfacing.
This is how it should be bolded:
Private Sub btnMoreArrayParameters_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles btnMoreArrayParameters.Click
 
    ?Clear the list
    ClearList()
 
    ?Declare an array
    Dim strMoreFriends(1) As String
 
    ?Populate the array
    strMoreFriends(0) = ″Elaine″
    strMoreFriends(1) = ″Debra″
 
    ?List your friends
    AddItemsToList(strFriends)
    AddItemsToList(strMoreFriends)
End Sub
02/27/2012
413 Error in Text
The reference to Chapter 25 should be deleted, as the chapter was cut from the book.
5/5/10

Related Titles

More By These Authors

Visual Basic

by Bill Sheldon, Billy Hollis, Kent Sharkey, Jonathan Marbutt, Rob Windsor, Gastón C. Hillar
by Evangelos Petroutsos
by Mark Grand, Brad Merrill
by Wallace Wang
Back to Top