Errata: Visual C++ .NET For Experienced Programmers
(First Printing)
We wish to thank our many readers who took the time
to email us with errata. If you find errata not listed on this page,
please email us at deitel@deitel.com. Remember to include the book title and edition.
Note: You can determine which printing you
have by looking at the bottom of the back of the second physical page
in the book (page iv, but it has no page number). Just above the ISBN
number is a list of numbers. For the first printing of the book, the list
appears as follows:
10 9 8 7 6 5 4 3 2 1
The last number in the list is the printing number. So the above list
indicates printing 1 and the following list indicates printing 2:
10 9 8 7 6 5 4 3 2
Chapter 4
- pp. 107, 110-111: These pages have incorrect line numbers.
- p. 115, 2nd paragraph. “Line 61 uses the Length
property of array2 to determine the number of rows in the
jagged array.” should be “Line 61 uses the Length property of
array to determine the number of rows in the jagged array.”
Chapter 6
-
p. 203-204, Fig. 6.20, Lines 19-20,
x = xValue;
y =
yValue;
should be
X = xValue;
Y = yValue;
Chapter 24
-
p. 1334, Lines 48,
new System::EventHandler( this, this->PlayButton_Click );
should be
new System::EventHandler(
this, &SoundPlayer::PlayButton_Click );
© 1992-2005. Deitel & Associates, Inc. All Rights Reserved.
|