Wiley.com
Print this page Share

Beginning Visual Basic 2005 Databases

ISBN: 978-0-7645-8894-5
Paperback
768 pages
November 2005
Beginning Visual Basic 2005 Databases (076458894X) cover image
This title is out-of-print and not currently available for purchase from this site.

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
81 OleDbConnection
Calling the Close method on an OleDbConnection object that is not opened DOES NOT cause an error as the text states.

However, the OleDbConnection object does need to be instantiated which is what the reader failed to do.
3/1/06
96 Error in Text
In the subsection of Try Out in part number 5 it says:

"Right-click Access SQL..."
It should say:
"Right-click Access Queries"

because that is the project we are using in this section.
3/1/06
97 & 103 Error in Text/Grid
Instructions for page 103, step 4:

The reader should copy the data from a row in the grid, place the copied text in NotePad and then just copy the Guid.
07/12/2006
105 Error in Code
ComboBox1.DataSource = objDataTable.Tables(0)
ComboBox1.DisplayMember = "ProjectName"
ComboBox1.ValueMember = "ProjectID"

Should be:

'Bind the DataTable to the ComboBox
ComboBox1.DataSource = objDataTable
ComboBox1.DisplayMember = "ProjectName"
ComboBox1.ValueMember = "ProjectID"
3/15/06
209 Typo
The schema for the GroupProjects table:
GroupProjectsID (plural)

should be:
GroupProjectID (singular)
11/20/2006
413 Error in Text
Step 10:br>
cboEmployeeWeekEndingDate
should be:
cboEmployeeWeekEnding
3/6/06
626 Error in Step
Step 117:
Drag a ListView control from the Toolbox and drop it onto pnlProjects.

should read:
Drag a ListView control from the Toolbox and drop it onto pnlRoles.
01/08/07
Back to Top