WILEY

KNOWLEDGE FOR GENERATIONS

WILEY - KNOWLEDGE FOR GENERATIONS

United States Change Location

cart.gif CART |  MY ACCOUNT |  CONTACT US |  HELP    
Cover image for product 0470191341
Beginning Microsoft Visual Basic 2008
ISBN: 978-0-470-19134-7
Paperback
912 pages
May 2008
US $44.99 Add to Cart

This price is valid for United States. Change location to view local pricing and availability.

Other Available Formats: Adobe E-Book
  • Description
  • Table of Contents
  • Author Information
  • Errata
  • Download

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.

ChapterPageDetailsDatePrint Run
4 Error in Code
the sample code that is provided should contain a greater than or equal to operator in the second IF statement.
06/24/2008
98 Error in Code
the code area reads:

'Is intNumber greater than or equal to 27? If intNumber = 27 Then MessageBox.Show("Is 'intNumber' greater than or qual to 27? Yes!", "if Demo") Else MessageBox.Show("is 'intNumber' greater than or qual to 27? No!", "If Demo") End If

The operator is wrong.
If intNumber = 27 Then
Should be:
If intNumber >= 27 Then
06/04/08
626 & 627 Error in javascript
The javascript uses the innerText property that is not supported in firefox. To make the app work in firefox and IE change the javascript to

document.getElementById("lblClient").innerHTML = "Changed";
document.getElementById("lblServer").innerHTML = "Server";

inside of the btnClient_onclick() event.
06/13/2008