C# and C Beginning Visual C# 2010 Book Information and Code Download Wrox


02.10.2012 C# and C++: Beginning Visual C# 2010 - Book Information and Code Download - Wrox
Topic: C# and C++
Beginning Visual C# 2010
Karli Watson, Christian Nagel, Jacob Hammer Pedersen, Jon D. Reid, Morgan Skinner
Paperback Version: US
ISBN: 978-0-470-50226-6 $44.99
Paperback
Add to Cart
1080 pages
April 2010
Find this book at your
Other Available Formats: E-book
favorite retailer
If you are an instructor, you may request an evaluation copy for this title.
About This Title | Download Code | Errata | P2P Forum for This Title
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.
Chapter Page Details Date Print
Run
xxxvi Error in Text 06/02/2010
Line 6:
"Once you've leaned how OOP works in C#, ........"
Should say learned instead of leaned.
51 Error in Text 5/5/10
After the following statement:
Similarly, you can gain control over operator precedence by using parentheses, as shown in this example
This example should be included:
var1 = (var2 + var3) * var4;
Here, the content of the parentheses is evaluated first, meaning that the + operator acts before the * operator.
54 Error in Text 3/14/11
Last paragraph, last sentence reads:
"The other two namespaces..."
should read:
"The other three namespaces..."
5 122, Error in Exercise 3/14/11
962 Exercise 4:
Currently reads:
Will the following code compile? Why or why not?
string[5] blab = new string[5]
string[5] = 5th string.
For the answers [Page 962] the code needs to be changed to:
Will the following code compile? Why or why not?
string[5] blab = new string[5]
blab[5] = 5th string.
138 Error in Figure 3/14/11
output shown should not include the line "Text output from function"
282 Error in Text 4/11/2011
Middle of page.
"You'll learn cover" - Should say ?You?ll lean?
295 Error in Code 4/11/2011
?if (min < 2)?
should be
?if (minimum < 2)?
301, Errata 4/11/2011
321 Pages 301 and 321 reference the ?as? operator which is not covered until page 326. Please refer to page 326 for this coverage.
314 Error in Code 4/11/2011
In GetHashCode().
Formula should be 13*(int)suit + (int)rank?
336 Error in Text 12/7/2010
"tertiary" should be "ternary"
354 Error in Code 10/5/2010
Code sample near the bottom of the page:
class My GenericClass where T: constraint
should be:
class MyGenericClass where T: constraint
394 Improvement on Code 3/14/11
Last line of the Progam.cs code should be:
Console.ReadKey();
This should occur after the Console.WriteLine command indicating that the player "has won the game" or this message will display too quickly to the user
and not be readable.
462 Error in Text 3/14/11
Last full sentence at bottom of the page:
"If the length of the text in the text box is zero, then set the background color to red and the Tag to false."
should be:
"If the length of the text in the text box is zero, then set the background color to red."
wrox.com/WileyCDA/& /Beginning-Visual-C-2010.productCd-0470502266,descCd-ERRATA.html?pri& 1/4
02.10.2012 C# and C++: Beginning Visual C# 2010 - Book Information and Code Download - Wrox
No Tag property is used in the coding example.
467 Error in Text 3/14/11
Step # 3 of the Try It Out:
"The Text property of the RadioButton and CheckBox controls should be the same as the names of the controls without the first three letters..."
should be:
"The Text property of the RadioButton and CheckBox controls should be the same as the names of the controls without the first two words..."
502 Error in Text 3/14/11
Third sentence, just before the Try It Out:
"In the code download, this project is named 'Extended Manual Menus'."
should be:
"In the code download, this project is named 'Manual Menus 2'."
514 Error in Code 3/14/11
Step 5 code:
"frmChild child = newfrmChild(this);"
should be changed to:
"frmChild child = new frmChild(this);"
515 Error in Code 3/14/11
code in middle of page:
"frmChild child = newfrmChild(this);"
should be changed to:
"frmChild child = new frmChild(this);"
516 Extraneous Sentence 9/9/11
second sentence of step 5: "Change the AllowMerge property of the toolbar to False." Setting the value of AllowMerge to either true or false in this example
has no effect. Ignore the sentence.
521 Error in Code 3/14
Step 4 code:
"private void ToolStripMenuItemTile_Click(object sender, EventArgs e)"
and
"private void ToolStripMenuItemCascade_Click(object sender, EventArgs e)"
should be:
"private void tileToolStripMenuItem_Click(object sender, EventArgs e)"
and
"private void cascadeToolStripMenuItem_Click(object sender, EventArgs e)"
respectively, to be consistent with the naming convention for these menu items as found in Step 2.
554 Error in Text 3/14/11
second sentence:
"When you click the Settings button near the Prerequisites URL text box..."
should be:
"When you click the Prerequisites button near the Installation URL text box..."
585 Error in Text 3/14/11
4th sentence:
"This base code is in the code-behind file Registration.aspx.cs, as defined with the CodeFile property."
should be:
"This base code is in the code-behind file Registration.aspx.cs, as defined with the CodeBehind property."
591 Error in Text 4/11/2011
Step 6 of Try It Out exercise:
"6. Start the Default.aspx page, fill in some data..."
should be changed to
"6. Start the Registration.aspx page, fill in some data..."
593 Error in Text 11/30/2010
Currently says:
2. Add a new AJAX Web Form named UpdatePanelDemo.aspx to the existing website.
3. From the AJAX Extensions category in the Toolbox, add an UpdatePanel to the page.
This should be:
2. Add a new WebForm named UpdatePanelDemo.aspx to the existing website.
3. From the AJAX Extensions category in the Toolbox, add ScriptManger and UpdatePanel controls to the page.
594 Error in Text 11/30/2010
Current:
With an ASP.NET AJAX page, a ScriptManager object is required. This object is added by using the AJAX Web Form template.
Should be:
For using Ajax functionality, a ScriptManager object is required.
595 Error in Text 11/30/2010
Currently says:
2. Add a new AJAX Web Form named UpdatePanelWithTrigger.aspx to the existing website.
3. Add two UpdatePanel controls.
Should be:
2. Add a new Web Form named UpdatePanelWithTrigger.aspx to the existing website.
3. Add one ScriptManager and two UpdatePanel controls
595 Error in Text 4/11/2011
wrox.com/WileyCDA/& /Beginning-Visual-C-2010.productCd-0470502266,descCd-ERRATA.html?pri& 2/4
02.10.2012 C# and C++: Beginning Visual C# 2010 - Book Information and Code Download - Wrox
595 Error in Text 4/11/2011
Step 9 of Try It Out, second sentence:
"Add an AsynchronousPostback trigger, set the..."
should be changed to
"Add an AsyncPostBack trigger, set the..."
Chapter Error in Code 05/20/2010
3 The *, %, and / operators have equal highest precedence here, followed by + and finally +=. The precedence in the exercise can be illustrated using
Exercise parentheses as follows:
4
resultVar += (var1 * var2) + (var3 % (var4 / var5));
Or:
resultVar += (var1 * var2) + ((var3 % var4) / var5));
The result is the same in both cases.
626 Error in Text 10/18/11
In the Try It Out, under point 2:
open the window be selecting view->Other Windows->Server Explorer
should be:
open the window by selecting view->Server Explorer
642 Error in Text 4/11/2011
Last sentence in NOTE:
"Chapter 27 covers WCF."
should be changed to
"Chapter 26 covers WCF."
656 Error in Code 01/30/2011
Code should be
//?
if (e.Error == null)
{
//?
Instead of
//?
if (e.Error != null)
{
//?
659 Error in Text 4/11/2011
The properties City and TemperatureType in class GetWeatherRequest, and the properties Condition and Temperature in class GetWeatherResponse
should not be terminated with a semicolon. A "Semicolon after method or accessor block is not valid" error will result.
672 Error in Text 4/11/2011
Try It Out Step 2, first sentence: "Open the Package/Publish project settings..." should be changed to "Open the Package/Publish Web project settings..."
Step 2, last sentence: "Click the link...the setting 'Include all Databases configured in Deploy SQL Tab'" should be changed to "Click the link...the setting
'Include all databases configured in Package/Publish SQL tab'"
Step 3, first sentence: "The Deploy SQL settings..." should be changed to "The Package/Publish SQL settings..."
Step 4, third sentence: "Check the settings of the publish method MSDeploy.Publish" should be changed to "Check the settings of the publish method
Web Deploy"
Step 4, fifth sentence: "Click the link Click Here to..." should be changed to "Click the link 'Find Web hosting provider that supports one-click publish' to..."
673- Error in Figures 4/11/2011
674 Figures 20-8, 20-9, 20-10, and 20-11 do not display the correct wording and need to updated with the latest screens from the latest Visual Studio 2010 RC.
701 Error in Code 10/18/11
in How It Works code snippet, inside while loop:
strLine = sr.ReadLine();
should be:
line = sr.ReadLine();
739 Error in Code 4/11/2011
P. 739, first line:
"...parameter that is passed into the RecurseXmlDocument method..."
should be changed to
"...parameter that is passed into the FormatText method..."
741 Error in Text 4/11/2011
Table 22-4, CreateElement description:
"...creates only nodes of the XmlDocument variety."
should be changed to
"...creates only nodes of the XmlElement variety."
745 Error in Text 4/11/2011
Last sentence before Table 22-6:
"...you can assume the current node is the node in the XML document."
should be changed to
"...you can assume the current node is the node in the XML document."
wrox.com/WileyCDA/& /Beginning-Visual-C-2010.productCd-0470502266,descCd-ERRATA.html?pri& 3/4
02.10.2012 C# and C++: Beginning Visual C# 2010 - Book Information and Code Download - Wrox
"...you can assume the current node is the node in the XML document."
769 Error in Text 4/11/2011
Last sentence before How It Works:
"Looks like the Rand() function generates..."
should be changed to
"Looks like the Random() function generates..."
857 Error in Text 11/13/2011
The following statement should be removed from the third paragraph from the bottom:
?Window_MouseUp() event handler was called?
About Wrox | Contact Us | Subscribe to an RSS Feed of New Wrox Titles
Copyright © 2000-2012 by John Wiley & Sons, Inc. or related companies. All rights reserved. Please read our Privacy Policy.
wrox.com/WileyCDA/& /Beginning-Visual-C-2010.productCd-0470502266,descCd-ERRATA.html?pri& 4/4


Wyszukiwarka

Podobne podstrony:
07a?0 Information and Communication
Visual Resolution in Coherent and Incoherent Light
General Information and Concepts
drugs for youth via internet and the example of mephedrone tox lett 2011 j toxlet 2010 12 014
Origins Cosmic Beginnings and Human Ends Where Science and Religion Meet
On demand access and delivery of business information
Shadow Report on Intolerance and Discrimination against Christians in Europe 2005 2010(1)
2009 2010 Statement of Profit and Loss
Bell Book And?ndle Fire And Run
MAPS Vol12 No1 How Psychedelics Informed My Sex Life and Sex Work
2010 06 Smoke and Magic

więcej podobnych podstron