> You will not be able to use CF to loop over a com object.  
> You must use that objects method's ie:
> 
> <CFSCRIPT>
> entitiesIterator = entitiesCollection.iterator();
> while ( entitiesIterator.hasNext() ) {
>       ......
> }
> </CFSCRIPT>
> 
> Or if you know the size of the collection you can use a 
> simple for loop. CF isn't going to know how to process a 
> COM object.

It's been my experience that you can loop over COM object properties using
the COLLECTION attribute of CFLOOP.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to