Microsoft Visual C++ .NET Step by Step Version 2003 Comments And Corrections (815370)



The information in this article applies to:

  • MSPRESS Microsoft Visual C++ .NET Step by Step Version 2003, ISBN 0-7356-1907-7

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Microsoft Visual C++ .NET Step by Step Version 2003, 0-7356-1907-7.
The following topics are covered:

  • Pages 422 & 423: Mount St.Helens Should Be Mount St. Helensr
  • Page 430: After Should Be Before
  • Page 525: OR Should Be AND
  • Page 546: Step 4 Should Be Step 5
  • Page 548: Error In Code Sample

MORE INFORMATION

Pages 422 & 423: Mount St.Helens Should Be Mount St. Helens

There are typographical errors at the bottom of page 422, and the top of 423. There is a string of text on each page missing a space.

Change:
"Mount St.Helens"

To:
"Mount St. Helens"



Page 430: After Should Be Before

On page 430, there is an error in the second sentence of the paragraph above Step 1 in the middle of the page.

Change:
"The current XML document contains three volcano elements; what you'll do is find the second element and insert a new element after it."

To:
"The current XML document contains three volcano elements; what you'll do is find the second element and insert a new element before it."

Page 525: OR Should Be AND

On page 525, there is a typographical error at the bottom of the page.
Change:

"Each of these represents a particular bit position within the result, and the bitwise OR operator (&) is used to check which bits are set."

To:
"Each of these represents a particular bit position within the result, and the bitwise AND operator (&) is used to check which bits are set."

Page 546: Step 4 Should Be Step 5

There is a typographical error in the second sentence of Step 6 towards the bottom of Page 546. Step 4 should be Step 5.

Change:
"Modify the code for the inner loop in Step 4 so that it looks like this:"

To:
"Modify the code for the inner loop in Step 5 so that it looks like this:"


Page 548: Error in Code Sample

There is an error in the code sample on page 548. The last item "{" should be "}".


Change:

for (int i=0; i<pmi->Count; i++) { Object* pMemberAtts[] = pmi[i]->GetCustomAttributes(true); if (pMemberAtts->Count > 0) { // Do something } {

To:

for (int i=0; i<pmi->Count; i++) { Object* pMemberAtts[] = pmi[i]->GetCustomAttributes(true); if (pMemberAtts->Count > 0) { // Do something } }


Microsoft Press is committed to providing informative and accurate books. All comments and corrections listed above are ready for inclusion in future printings of this book. If you have a later printing of this book, it may already contain most or all of the above corrections.

Modification Type:MinorLast Reviewed:8/23/2004
Keywords:kbdocerr kbdocfix KB815370 kbAudEndUser