Errata for Microsoft® Visual Basic® .NET Programmers Cookbook
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 282
|
Error In Code Sample
The code sample on page 282 is missing and .Value element.
Change:
Config.Fields(cdoSendUsingMethod) = cdoSendUsingPort
Config.Fields(cdoSMTPServer) = "test.mailserver.com"
Config.Fields(cdoSMTPServerPort) = 25
Config.Fields(cdoSMTPAuthenticate) = cdoBasic
Config.Fields(cdoSendUserName) = "username"
Config.Fields(cdoSendPassword) = "password"
To:
Config.Fields(cdoSendUsingMethod).Value = cdoSendUsingPort
Config.Fields(cdoSMTPServer).Value = "test.mailserver.com"
Config.Fields(cdoSMTPServerPort).Value = 25
Config.Fields(cdoSMTPAuthenticate).Value = cdoBasic
Config.Fields(cdoSendUserName).Value = "username"
Config.Fields(cdoSendPassword).Value = "password"ProductStudio BugID = 6223
|
Microsoft Press |
May 06, 2010 |
|