Microsoft Visual Basic .NET Programmer's Cookbook Comments And Corrections (828819)



The information in this article applies to:

  • MSPRESS Microsoft Visual Basic .NET Programmer's Cookbook, ISBN 0-7356-1931-X

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Microsoft Visual Basic .NET Programmer's Cookbook, 0-7356-1931-X.

The following topics are covered:
  • Page 282: Error In Code Sample

MORE INFORMATION

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 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.

Modification Type:MajorLast Reviewed:9/18/2003
Keywords:kbdocfix kbdocerr KB828819 kbAudEndUser