The information in this article applies to:
SUMMARY
New programming functionality in Microsoft Excel 97 allows you to create a
collection. A collection is a predefined object that stores groups of
related objects. A collection makes it easier to work with the object
group. For example, you can use a For Each looping structure to loop
through the collection. Each time the macro executes the loop it references
a different object in the collection until all objects in the collection
are referenced once.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web: http://www.microsoft.com/support/supportnet/overview/overview.aspIn general, declare an object as a new collection to create the collection. After you create the Collection object, add items to the collection using the Add method or remove items using the Remove method.
REFERENCESFor more information about the Add Method, click the Index tab in Visual Basic for Applications Help, type the following text add methodand then double-click the selected text to go to the "Add Method (Visual Basic for Applications)" topic. For more information about Collections, click the Index tab in Visual Basic for Applications Help, type the following text collections, describedand then double-click the selected text to go to the "Collection Object" topic. Additional query words: 97 for Windows XL97
Keywords : kbprg kbdta kbdtacode KbVBA |
Last Reviewed: November 9, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |