Errata for Developing International Software
Submit your own errata for this product.
The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".
The following errata were submitted by our customers and approved as valid errors by the author or editor.
Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question Note Update
| Version |
Location |
Description |
Submitted By |
Date Submitted |
Date Corrected |
| Printed |
Page 151
|
enUS and daDK used in place of en-US and da-DK
On page 151, line 19 of the code sample reads:
Thread.CurrentThread.CurrentCulture = new CultureInfo("enUS");It should read:
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");Line 30 reads:
Thread.CurrentThread.CurrentCulture = new CultureInfo("daDK");It should read:
Thread.CurrentThread.CurrentCulture = new CultureInfo("da-DK");
|
Microsoft Press |
May 06, 2010 |
|
| Printed |
Page 293
|
= operator used in place of ==
On page 293, the ninth line of the code sample reads:
if (document.dir = "rtl")It should read:
if (document.dir == "rtl")
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.
|
Microsoft Press |
Jul 13, 2010 |
|