Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Public Collection of Properties

Status
Not open for further replies.

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 &quot;.properties&quot; 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 ?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top