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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

inspecting an object

Status
Not open for further replies.

funkydonkey2000

Programmer
May 29, 2003
12
0
0
AU
Hello There. Just wondering if there is a way to list all the methods of an object?

For example:

dim myobject : myoject = Server.CreateObject("someObject")

dim method
for each method in myobject
response.write method
next

but this deosn't work.

Thanks

Tony
 
i'm not aware of a method like that in VBScript, although I do know there is one built-in to Python, so you could start writing your ASP in python :)

[sub]01000111 01101111 01110100 00100000 01000011 01101111 01100110 01100110 01100101 01100101 00111111[/sub]
Help, the rampaging, spear-waving, rabid network gnomes are after me!
 
Use OleViewer it comes with Visual Studio 6 and VS.NET.

There is a pretty sweet vbs file you can download that makes using OleViewer very easy.

All you do is enter the progID or the ClassID of the component you want to inspect and it will open it for you in OleViewer.

Copy and paste the VBS code into a new vbs file.
The source can be found at:


- J
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top