Errata for 101 Microsoft® Visual Basic® .NET Applications
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 12
|
Multiple corrections to Application 101 code sample
On page 12, add the following line after line 784:
Dim scnnNorthwind as New SqlConnection (SQL_CONNECTION_STRING)Add the following line after line 784:
strConn = SQL_CONNECTION_STRINGLine 807 reads:
scnnNorthwind = New SqlConnection(SQl_CONNECTION_STRINGIt should read:
scnn Northwind = New SqlConnection(strConn)Line 871 reads:
Dim scnnNorthwind as SqlConnectionIt should read:
Dim scnnNorthwind as New SqlConnectionLine 872 reads:
Dim scmd as SqlCommandIt should read:
Dim scmd as New SqlCommandAdd the following line after line 877:
strConn = SQL_CONNECTION_STRINGLine 939 reads:
Dim ocnnNorthwind as OdbcConnectionIt should read:
Dim ocnnNorthwind as New OdbcConnectionLine 872 reads:
Dim ocmd as OdbcCommandIt should read:
Dim ocmd as New OdbcCommandLine 1037 reads:
If fldBrowse.ShowDialog() = DialogResults.OK ThenIt should read:
If fldBrowse.ShowDialog() = System.Windows.Forms.DialogResults.OK Then
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 |
May 06, 2010 |
|