Access 97 Developer's Handbook Comments and Corrections (195267)



The information in this article applies to:

  • MSPRESS Microsoft Access 97 Developer's Handbook ISBN 1-57231-358-7

This article was previously published under Q195267

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Microsoft Access 97 Developer's Handbook, ISBN 1-57231-358-7.

The following topics are covered:
  • Page 56: Incorrect Code

MORE INFORMATION

Page 56: Incorrect Code

Page 56, code for retrieving values stored in the array: Change:
   Dim vntElement As Variant
   For Each vntContent In aMyArray
   Debug.Print vntContent
   Next
				
To:
   Dim vntElement As Variant
   For Each vntElement In aMyArray
   Debug.Print vntElement
   Next
				
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:1/8/2000
Keywords:kbdocerr kbinfo KB195267