Microsoft KB Archive/932711

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 18:36, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article ID: 932711

Article Last Modified on 2/7/2007



APPLIES TO

  • Developing International Software, Second Edition, ISBN 0-7356-1583-7



SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Developing International Software, Second Edition, 0-7356-1583-7.

The following topics are covered:

  • Page 151: enUS and daDK used in place of en-US and da-DK
  • Page 293: = operator used in place of ==


MORE INFORMATION

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");



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.


Additional query words: 0-7356-1583-7 978-0-7356-1583-0

Keywords: KB932711