Guest_imported
New member
- Jan 1, 1970
- 0
I built a COM object and installed it in MTS. I'm referencing to it in an ASP page and in that page I need to loop through its properties without hardcoding them. With ADO object I can do this
DIM prop
FOR EACH prop IN <object name>.properties
...
NEXT
But when I tried this with the COM object that I've built, the ".properties" is not a option.
So is there a way to loop into the collection of properties with a custom COM object ? Do I have to toggle an option or to add a reference in the object ?
DIM prop
FOR EACH prop IN <object name>.properties
...
NEXT
But when I tried this with the COM object that I've built, the ".properties" is not a option.
So is there a way to loop into the collection of properties with a custom COM object ? Do I have to toggle an option or to add a reference in the object ?